From 83157972d6381459f26266cdfac77cbd99bbba98 Mon Sep 17 00:00:00 2001 From: Ian Lepore Date: Tue, 21 Mar 2017 22:21:29 +0000 Subject: [PATCH] Eliminate a "format string is not a string literal" warning. --- tools/test/ppsapi/ppsapitest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/ppsapi/ppsapitest.c b/tools/test/ppsapi/ppsapitest.c index 78e73825e16c..ef655e96d6df 100644 --- a/tools/test/ppsapi/ppsapitest.c +++ b/tools/test/ppsapi/ppsapitest.c @@ -72,7 +72,7 @@ main(int argc, char **argv) if (argc > 0) { fd = open(argv[0], O_RDONLY); if (fd < 0) - err(1, argv[0]); + err(1, "%s", argv[0]); } else { fd = 0; }