X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=tests%2Flibpspp%2Fstr-test.c;h=f5897d72029c051ac03870aab63f62bb52b639ca;hb=9574a6c2bf65ddc8ef13d4e942833bc5d4b0d2e0;hp=c341d887b8a89da7683cc0d664ad38596cd0668b;hpb=a258e53c63a08b0ec48aea8f03808eb651729424;p=pspp diff --git a/tests/libpspp/str-test.c b/tests/libpspp/str-test.c index c341d887b8..f5897d7202 100644 --- a/tests/libpspp/str-test.c +++ b/tests/libpspp/str-test.c @@ -1,5 +1,5 @@ /* PSPP - a program for statistical analysis. - Copyright (C) 2008, 2010 Free Software Foundation, Inc. + Copyright (C) 2008, 2010, 2014 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 @@ -18,7 +18,6 @@ #include -#include #include #include @@ -34,7 +33,7 @@ static void check_26adic (unsigned long int number, const char *expected_string) { char string[8]; - str_format_26adic (number, string, sizeof string); + str_format_26adic (number, true, string, sizeof string); if (strcmp (string, expected_string)) { printf ("base-26 of %lu: expected \"%s\", got \"%s\"\n",