From 95cc95749a5e783f2b5d2124d783f85820baf937 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Thu, 17 May 2012 13:54:29 -0400 Subject: Always use positional arguments in translatable strings https://fedorahosted.org/sssd/ticket/1336 --- src/tools/tools_util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tools/tools_util.h') diff --git a/src/tools/tools_util.h b/src/tools/tools_util.h index fccd9d96..fd26b890 100644 --- a/src/tools/tools_util.h +++ b/src/tools/tools_util.h @@ -37,7 +37,7 @@ val = getuid(); \ if (val != 0) { \ DEBUG(1, ("Running under %d, must be root\n", val)); \ - ERROR("%s must be run as root\n", prg_name); \ + ERROR("%1$s must be run as root\n", prg_name); \ val = EXIT_FAILURE; \ goto fini; \ } \ -- cgit