From 14d0a96999d20919b80700a34d5cc55d86587e06 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 4 Jun 2012 19:43:04 -0400 Subject: [PATCH] shell-recorder: Fix warning message about unknown escapes We were showing the percent character here. https://bugzilla.gnome.org/show_bug.cgi?id=677434 --- src/shell-recorder.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell-recorder.c b/src/shell-recorder.c index 91f4884f4..2c82fdab3 100644 --- a/src/shell-recorder.c +++ b/src/shell-recorder.c @@ -1208,7 +1208,7 @@ recorder_open_outfile (ShellRecorder *recorder) } break; default: - g_warning ("Unknown escape %%%c in filename", *p); + g_warning ("Unknown escape %%%c in filename", *(p + 1)); goto out; }