summaryrefslogtreecommitdiff
path: root/tests/test-vasnprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-vasnprintf.c')
-rw-r--r--tests/test-vasnprintf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/test-vasnprintf.c b/tests/test-vasnprintf.c
index 6b2a0ff..4cce0a9 100644
--- a/tests/test-vasnprintf.c
+++ b/tests/test-vasnprintf.c
@@ -1,5 +1,5 @@
/* Test of vasnprintf() and asnprintf() functions.
- Copyright (C) 2007-2011 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);
}