1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-07-25 10:16:53 +02:00

(pfstatus): Use __format__ and __printf__.

Remove `if __GNUC__ >= 2' guard.
This commit is contained in:
Jim Meyering
1999-01-23 16:48:36 +00:00
parent 5b181c3bd6
commit 9550ca6b71
+7 -6
View File
@@ -1,7 +1,8 @@
/* TODO:
x use getopt_long
x use error, not pferror
- bracket strings with _(...) for gettext
- don't use pfstatus -- or maybe leave it in and see who complains
x bracket strings with _(...) for gettext
- use consistent non-capitalizatin in error messages
*/
@@ -506,10 +507,11 @@ irand_mod (struct irand_state *r, word32 n)
/*
* Like perror() but fancier. (And fmt is not allowed to be NULL)
* This apparent use of features specific to GNU C is actually portable;
* see the definitions in error.h.
*/
#if __GNUC__ >= 2
static void pfstatus (char const *,...) __attribute__ ((format (printf, 1, 2)));
#endif
static void pfstatus (char const *,...)
__attribute__ ((__format__ (__printf__, 1, 2)));
/*
* Maintain a status line on stdout. This is done by using CR and
@@ -1194,8 +1196,7 @@ wipename (char *oldname, struct Options const *flags)
sync (); /* Force directory out */
if (origname)
{
pfstatus (_("%s: renamed to `%s'"),
origname, newname);
pfstatus (_("%s: renamed to `%s'"), origname, newname);
if (flags->verbose > 1)
flushstatus ();
}