From 1fe6147af6d60bc04ed0a0685349e8e1a716da4e Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Sat, 18 Jun 2016 14:02:21 -0700 Subject: perms-hook: Add missing newlines to log messages --- util/perms-hook.c | 4 ++-- 1 file 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); } -- cgit v1.2.3