diff options
Diffstat (limited to 'src/fileops.c')
-rw-r--r-- | src/fileops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileops.c b/src/fileops.c index c1824e812..e33377eac 100644 --- a/src/fileops.c +++ b/src/fileops.c @@ -529,7 +529,7 @@ int git_futils_cleanupdir_r(const char *path) git_buf fullpath = GIT_BUF_INIT; futils__rmdir_data data; - if ((error = git_buf_put(&fullpath, path, strlen(path)) < 0)) + if ((error = git_buf_put(&fullpath, path, strlen(path))) < 0) goto clean_up; data.base = ""; |