X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Ftests%2Ffloat-format.c;h=fed19479d2fe8043ee1a060e88b49b2fc4221c3e;hb=b62c12a425ab03fd37879e224e29ed53d167f8d4;hp=9e6f777cfc5eb75bf965a25338b6e24c828c0dc2;hpb=43b1296aafe7582e7dbe6c2b6a8b478d7d9b0fcf;p=pspp-builds.git diff --git a/src/language/tests/float-format.c b/src/language/tests/float-format.c index 9e6f777c..fed19479 100644 --- a/src/language/tests/float-format.c +++ b/src/language/tests/float-format.c @@ -121,8 +121,9 @@ parse_fp (struct lexer *lexer, struct fp *fp) { if (length != float_get_size (fp->format)) { - msg (SE, _("%d-byte string needed but %d-byte string supplied."), - (int) float_get_size (fp->format), (int) length); + msg (SE, _("%zu-byte string needed but %zu-byte string " + "supplied."), + float_get_size (fp->format), length); return false; } assert (length <= sizeof fp->data);