aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann <[email protected]>2000-06-20 18:32:12 +0000
committerGerd Moellmann <[email protected]>2000-06-20 18:32:12 +0000
commit9869bb0bd24aaa8d0190a67c56bb8319bf1ccc48 (patch)
tree29f7250646d7bc39e59737d50f036c5f074af024
parent89723395021b19977408e1595e6a8348d70896b6 (diff)
(make_temp_name): Don't use `%s' in string passed to
report_file_error.
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index a030bf1e96..e2453a5fb2 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -950,7 +950,7 @@ make_temp_name (prefix, base64_p)
in looping through 225307 stat's, which is not only
dog-slow, but also useless since it will fallback to
the errow below, anyway. */
- report_file_error ("Cannot create temporary name for prefix `%s'",
+ report_file_error ("Cannot create temporary name for prefix",
Fcons (prefix, Qnil));
/* not reached */
}