[PATCH] Use %ms instead of %as in localedef

Jakub Jelinek jakub@redhat.com
Tue Sep 18 19:06:00 GMT 2007


Hi!

With recent enough gcc there won't be warnings about the fscanf arguments...

2007-09-18  Jakub Jelinek  <jakub@redhat.com>

	* locale/programs/charmap-dir.c (charmap_aliases): Use %ms instead of
	%as in fscanf format strings.

--- libc/locale/programs/charmap-dir.c.jj	2007-07-16 09:58:46.000000000 +0200
+++ libc/locale/programs/charmap-dir.c	2007-09-18 19:37:16.000000000 +0200
@@ -1,4 +1,5 @@
-/* Copyright (C) 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
+/* Copyright (C) 2000, 2001, 2002, 2003, 2005, 2007
+   Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    This program is free software; you can redistribute it and/or modify
@@ -264,8 +265,8 @@ charmap_aliases (const char *directory, 
       char *alias = NULL;
       char junk[BUFSIZ];
 
-      if (fscanf (stream, " <code_set_name> %as", &alias) == 1
-          || fscanf (stream, "%% alias %as", &alias) == 1)
+      if (fscanf (stream, " <code_set_name> %ms", &alias) == 1
+          || fscanf (stream, "%% alias %ms", &alias) == 1)
         {
           aliases = (char **) xrealloc (aliases,
                                         (naliases + 2) * sizeof (char *));

	Jakub



More information about the Libc-hacker mailing list