Eliminate a "format string is not a string literal" warning.

This commit is contained in:
Ian Lepore 2017-03-21 22:21:29 +00:00
parent 3507006763
commit 83157972d6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=315692

View File

@ -72,7 +72,7 @@ main(int argc, char **argv)
if (argc > 0) { if (argc > 0) {
fd = open(argv[0], O_RDONLY); fd = open(argv[0], O_RDONLY);
if (fd < 0) if (fd < 0)
err(1, argv[0]); err(1, "%s", argv[0]);
} else { } else {
fd = 0; fd = 0;
} }