shell-recorder: Fix warning message about unknown escapes

We were showing the percent character here.

https://bugzilla.gnome.org/show_bug.cgi?id=677434
This commit is contained in:
Jasper St. Pierre 2012-06-04 19:43:04 -04:00
parent f0474ffccc
commit 14d0a96999

View File

@ -1208,7 +1208,7 @@ recorder_open_outfile (ShellRecorder *recorder)
} }
break; break;
default: default:
g_warning ("Unknown escape %%%c in filename", *p); g_warning ("Unknown escape %%%c in filename", *(p + 1));
goto out; goto out;
} }