Changed %2 to %s in string format

This commit is contained in:
Matt Jenkins
2014-04-19 13:37:42 +01:00
parent 22c2f77d84
commit b5a8255248

View File

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