]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Remove a spurious const in tst-fmemopen.
authorRoland McGrath <roland@hack.frob.com>
Mon, 27 Feb 2012 21:29:12 +0000 (13:29 -0800)
committerRoland McGrath <roland@hack.frob.com>
Mon, 27 Feb 2012 21:29:12 +0000 (13:29 -0800)
ChangeLog
stdio-common/tst-fmemopen.c

index 3f64fd826255f1959da669620fb42ab20ee2d28c..7210eb70af8536ea2306ef2f770fcaa992f1840a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2012-02-27  Roland McGrath  <roland@hack.frob.com>
+
+       * stdio-common/tst-fmemopen.c (main): Remove spurious const.
+
 2012-02-27  Joseph Myers  <joseph@codesourcery.com>
 
        * manual/install.texi (--with-headers): Describe headers as
index 8aa047e3c1d369196e9c6ffc7feb5b75d3173ae4..206bfd74d23e7f1c91db4329aa76fe7cacbf334f 100644 (file)
@@ -11,7 +11,7 @@
 int
 main (int argc, char **argv)
 {
-  const char *test_file;
+  char *test_file;
   const char blah[] = "BLAH";
   FILE *fp;
   char *mmap_data;