Avoid a portability problem in the checksum test
authorMatthias Clasen <mclasen@redhat.com>
Sun, 3 Feb 2013 14:50:48 +0000 (09:50 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Sun, 3 Feb 2013 14:50:48 +0000 (09:50 -0500)
String literals are not guaranteed to work like this.
https://bugzilla.gnome.org/show_bug.cgi?id=570572

glib/tests/checksum.c

index 900a538..4823c99 100644 (file)
@@ -18,8 +18,8 @@
  * string is intentionally more than twice that length.
  */
 
-#define FIXED_STR               "The quick brown fox jumps over the lazy dog. Jackdaws love my big sphinx of quartz. Pack my box with five dozen liquor jugs. How razorback-jumping frogs can level six piqued gymnasts!"
-#define FIXED_LEN               (strlen (FIXED_STR))
+static const char FIXED_STR[] = "The quick brown fox jumps over the lazy dog. Jackdaws love my big sphinx of quartz. Pack my box with five dozen liquor jugs. How razorback-jumping frogs can level six piqued gymnasts!";
+#define FIXED_LEN (strlen (FIXED_STR))
 
 const char *MD5_sums[] = {
   "d41d8cd98f00b204e9800998ecf8427e",