From 93aef71e90c8dd00eab1274cfec90d4b0a5cb7ba Mon Sep 17 00:00:00 2001 From: Jeff Hostetler Date: Wed, 26 Nov 2014 14:12:11 -0500 Subject: [PATCH] fix cl_git_mkfile() to test for -1 rather than 0 for errors from p_creat() --- tests/clar_libgit2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/clar_libgit2.c b/tests/clar_libgit2.c index faeee031a..9640b9265 100644 --- a/tests/clar_libgit2.c +++ b/tests/clar_libgit2.c @@ -18,7 +18,7 @@ void cl_git_mkfile(const char *filename, const char *content) int fd; fd = p_creat(filename, 0666); - cl_assert(fd != 0); + cl_assert(fd != -1); if (content) { cl_must_pass(p_write(fd, content, strlen(content)));