diff options
Diffstat (limited to 'userland/minibox/utilities/touch.c')
-rw-r--r-- | userland/minibox/utilities/touch.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/userland/minibox/utilities/touch.c b/userland/minibox/utilities/touch.c index dd2f072..c9236e2 100644 --- a/userland/minibox/utilities/touch.c +++ b/userland/minibox/utilities/touch.c @@ -2,8 +2,9 @@ #include <fcntl.h> int touch_main(int argc, char **argv) { - if (argc < 2) + if (argc < 2) { return 1; + } int fd; COND_PERROR_EXP(open(argv[1], O_CREAT, 0), "open", return 1) close(fd); |