summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2016-06-18 14:02:21 -0700
committerMichael Forney <mforney@mforney.org>2016-06-18 14:02:21 -0700
commit1fe6147af6d60bc04ed0a0685349e8e1a716da4e (patch)
treee7c30bb9d3b8f40eb12ea5e414e28f116dbb7186 /util
parent714a5cbd33dbc46bed1a02dedaa8d09bf5cc6e8c (diff)
perms-hook: Add missing newlines to log messages
Diffstat (limited to 'util')
-rw-r--r--util/perms-hook.c4
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);
}