diff options
| -rw-r--r-- | util/perms-hook.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/perms-hook.c b/util/perms-hook.c index 87f79f61..ce2667d8 100644 --- a/util/perms-hook.c +++ b/util/perms-hook.c @@ -127,14 +127,14 @@ readperms(const char *rev) static int chmod_v(const char *path, mode_t mode) { - printf("chmod(\"%s\", %#o)", path, mode); + printf("chmod(\"%s\", %#o)\n", path, mode); return chmod(path, mode); } static int mkdir_v(const char *path, mode_t mode) { - printf("mkdir(\"%s\", %#o)", path, mode); + printf("mkdir(\"%s\", %#o)\n", path, mode); return mkdir(path, mode); } |
