aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2014-11-25 23:31:21 +0000
committerJoseph Myers <joseph@codesourcery.com>2014-11-25 23:31:21 +0000
commit439e1ad6d04e24f76f92ff7f61153fbe489559b9 (patch)
treec709adb81d02ffa386339d4b62953ea7d87e4b46 /ChangeLog
parentb1eda10e17bf2056ca79a534d92fe0b0b06bd410 (diff)
downloadglibc-439e1ad6d04e24f76f92ff7f61153fbe489559b9.zip
glibc-439e1ad6d04e24f76f92ff7f61153fbe489559b9.tar.gz
glibc-439e1ad6d04e24f76f92ff7f61153fbe489559b9.tar.bz2
Fix warning in stdio-common/tst-printf-round.c.
This patch fixes warnings of the form "tst-printf-round.c:202:17: warning: passing argument 3 of 'test_hex_in_one_mode' discards 'const' qualifier from pointer target type", by adding an extra const to that argument (so that after array-to-pointer conversion it's const char *const *). Tested for x86_64. * stdio-common/tst-printf-round.c (test_hex_in_one_mode): Make third argument const.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog5
1 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index c020ed4..23fba36 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2014-11-25 Joseph Myers <joseph@codesourcery.com>
+
+ * stdio-common/tst-printf-round.c (test_hex_in_one_mode): Make
+ third argument const.
+
2014-11-25 Paul Eggert <eggert@cs.ucla.edu>
fnmatch: work around GCC compiler warning bug with uninit var