m4-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Changes to m4/src/Attic/builtin.c,v [branch-1_4]


From: Eric Blake
Subject: Changes to m4/src/Attic/builtin.c,v [branch-1_4]
Date: Mon, 22 Oct 2007 16:38:35 +0000

CVSROOT:        /sources/m4
Module name:    m4
Branch:         branch-1_4
Changes by:     Eric Blake <ericb>      07/10/22 16:38:34

Index: src/builtin.c
===================================================================
RCS file: /sources/m4/m4/src/Attic/builtin.c,v
retrieving revision 1.1.1.1.2.66
retrieving revision 1.1.1.1.2.67
diff -u -b -r1.1.1.1.2.66 -r1.1.1.1.2.67
--- src/builtin.c       9 Oct 2007 16:55:08 -0000       1.1.1.1.2.66
+++ src/builtin.c       22 Oct 2007 16:38:33 -0000      1.1.1.1.2.67
@@ -553,7 +553,7 @@
 /* Digits for number to ascii conversions.  */
 static char const digits[] = "0123456789abcdefghijklmnopqrstuvwxyz";
 
-static const char *
+const char *
 ntoa (int32_t value, int radix)
 {
   bool negative;
@@ -1541,7 +1541,7 @@
   dump_args (obs, argc, argv, " ", false);
   obstack_1grow (obs, '\0');
   debug_flush_files ();
-  fprintf (stderr, "%s", (char *) obstack_finish (obs));
+  xfprintf (stderr, "%s", (char *) obstack_finish (obs));
   fflush (stderr);
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]