Changed %2 to %s in string format

This commit is contained in:
Matt Jenkins
2014-04-19 13:37:15 +01:00
parent de9ae5c603
commit 5da189ad36

View File

@@ -522,7 +522,7 @@ void startup ()
int fd = mkstemp (tfilename); int fd = mkstemp (tfilename);
if (fd == -1) { if (fd == -1) {
uerror ("cannot create temporary file %2", tfilename); uerror ("cannot create temporary file %s", tfilename);
} else { } else {
close(fd); close(fd);
} }