From: Roland McGrath Date: Mon, 27 Feb 2012 21:29:12 +0000 (-0800) Subject: Remove a spurious const in tst-fmemopen. X-Git-Tag: glibc-2.16-tps~934 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4579f81caf7fbfd17db43699e6352a8e4c26421f;p=thirdparty%2Fglibc.git Remove a spurious const in tst-fmemopen. --- diff --git a/ChangeLog b/ChangeLog index 3f64fd82625..7210eb70af8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2012-02-27 Roland McGrath + + * stdio-common/tst-fmemopen.c (main): Remove spurious const. + 2012-02-27 Joseph Myers * manual/install.texi (--with-headers): Describe headers as diff --git a/stdio-common/tst-fmemopen.c b/stdio-common/tst-fmemopen.c index 8aa047e3c1d..206bfd74d23 100644 --- a/stdio-common/tst-fmemopen.c +++ b/stdio-common/tst-fmemopen.c @@ -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;