From d658a5148ae2442b66a7dbdce16ec3db3180cd01 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Fri, 19 Aug 2016 19:10:28 +0200 Subject: [PATCH] recorder: Print absolute path if output file can't be opened --- 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 981b7d1f0..cb2e93f76 100644 --- a/src/shell-recorder.c +++ b/src/shell-recorder.c @@ -1075,7 +1075,7 @@ recorder_open_outfile (ShellRecorder *recorder, if (outfile == -1 && errno != EEXIST) { - g_warning ("Cannot open output file '%s': %s", filename->str, g_strerror (errno)); + g_warning ("Cannot open output file '%s': %s", path, g_strerror (errno)); g_string_free (filename, TRUE); g_free (path); goto out;