Merge pull request #2734 from jeffhostetler/jeffhostetler/git_mkfile

fix cl_git_mkfile() to test for -1 rather than 0 for errors from p_creat...
This commit is contained in:
Edward Thomson 2014-12-01 10:43:11 -05:00
commit 169497d1e7

View File

@ -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)));