]> git.sur5r.net Git - i3/i3/commitdiff
Remove extraneous newline when printing core_pattern (#2490)
authorMichael Stapelberg <stapelberg@users.noreply.github.com>
Tue, 4 Oct 2016 06:53:49 +0000 (23:53 -0700)
committerGitHub <noreply@github.com>
Tue, 4 Oct 2016 06:53:49 +0000 (23:53 -0700)
This was accidentally changed in commit 94a09b3cac98a3bc1ed580fce16aa9869f83bbaa

src/main.c

index 96eab67142c983694a0e63052962317f6810bbbc..9373445aa15f4225d5fa5b280d28ea0d96514677 100644 (file)
@@ -451,7 +451,7 @@ int main(int argc, char *argv[]) {
             memset(cwd, '\0', cwd_size);
             if (read(patternfd, cwd, cwd_size) > 0)
                 /* a trailing newline is included in cwd */
-                LOG("CORE DUMPS: Your core_pattern is: \"%s\".\n", cwd);
+                LOG("CORE DUMPS: Your core_pattern is: %s", cwd);
             close(patternfd);
         }
         free(cwd);