X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=tests%2Ftest-vasnprintf.c;h=4cce0a947af4e5c1e17224bb13c84a2639e9dac9;hb=fa1db0dd22768f09a507674a30beb5b8a87bb35f;hp=15401eb4ca46724c89f4b260da02ee06f5b3477a;hpb=3213c107e7632d3b7e462c06acaefde7d50e5067;p=gnulib.git diff --git a/tests/test-vasnprintf.c b/tests/test-vasnprintf.c index 15401eb4c..4cce0a947 100644 --- a/tests/test-vasnprintf.c +++ b/tests/test-vasnprintf.c @@ -1,5 +1,5 @@ /* Test of vasnprintf() and asnprintf() functions. - Copyright (C) 2007-2010 Free Software Foundation, Inc. + Copyright (C) 2007-2013 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -55,7 +55,7 @@ test_function (char * (*my_asnprintf) (char *, size_t *, const char *, ...)) ASSERT (length == 5); if (size < 6) ASSERT (result != buf); - ASSERT (memcmp (buf + size, "DEADBEEF" + size, 8 - size) == 0); + ASSERT (memcmp (buf + size, &"DEADBEEF"[size], 8 - size) == 0); if (result != buf) free (result); }