trigger: reduce indentation level in trigger_event()
[project/procd.git] / jail / fs.c
index f390180..c4cdcc9 100644 (file)
--- a/jail/fs.c
+++ b/jail/fs.c
@@ -86,7 +86,7 @@ static int add_script_interp(const char *path, const char *map, int size)
                start++;
        }
        if (start >= size) {
-               ERROR("bad script interp (%s)", path);
+               ERROR("bad script interp (%s)\n", path);
                return -1;
        }
        int stop = start + 1;
@@ -94,7 +94,7 @@ static int add_script_interp(const char *path, const char *map, int size)
                stop++;
        }
        if (stop >= size || (stop-start) > PATH_MAX) {
-               ERROR("bad script interp (%s)", path);
+               ERROR("bad script interp (%s)\n", path);
                return -1;
        }
        char buf[PATH_MAX];