diff options
Diffstat (limited to 'ulib.c')
-rw-r--r-- | ulib.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -82,7 +82,8 @@ stat(char *n, struct stat *st) int r; fd = open(n, O_RDONLY); - if(fd < 0) return -1; + if(fd < 0) + return -1; r = fstat(fd, st); close(fd); return r; |