svn commit: r307220 - head/lib/libc/tests/stdio

Ruslan Bukin br at FreeBSD.org
Thu Oct 13 15:26:53 UTC 2016


Author: br
Date: Thu Oct 13 15:26:51 2016
New Revision: 307220
URL: https://svnweb.freebsd.org/changeset/base/307220

Log:
  Fix typos: use correct string format and value to compare.
  
  Sponsored by:	DARPA, AFRL
  Sponsored by:	HEIF5
  Differential Revision:	https://reviews.freebsd.org/D8226

Modified:
  head/lib/libc/tests/stdio/printbasic_test.c

Modified: head/lib/libc/tests/stdio/printbasic_test.c
==============================================================================
--- head/lib/libc/tests/stdio/printbasic_test.c	Thu Oct 13 15:23:53 2016	(r307219)
+++ head/lib/libc/tests/stdio/printbasic_test.c	Thu Oct 13 15:26:51 2016	(r307220)
@@ -124,10 +124,10 @@ ATF_TC_BODY(int_within_limits, tc)
 	testfmt(S_ULONGMAX, "%lu", ULONG_MAX);
 
 	testfmt("-1", "%lld", (long long)-1);
-	testfmt(S_ULONGMAX, "%lu", ULLONG_MAX);
+	testfmt(S_ULLONGMAX, "%llu", ULLONG_MAX);
 
 	testfmt("-1", "%d", -1);
-	testfmt(S_UINT32MAX, "%lu", UINT32_MAX);
+	testfmt(S_UINT32MAX, "%u", UINT32_MAX);
 
 	testfmt("-1", "%hd", -1);
 	testfmt("65535", "%hu", USHRT_MAX);


More information about the svn-src-all mailing list