Author: sbruno Date: Fri Aug 8 18:00:23 2014 New Revision: 269730 URL: http://svnweb.freebsd.org/changeset/base/269730
Log: Quiesce a printf warning from clang, %ul -> %lu Phabric: https://phabric.freebsd.org/D472 Reviewed by: mahrens delphij Modified: head/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c Modified: head/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c ============================================================================== --- head/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c Fri Aug 8 17:29:01 2014 (r269729) +++ head/cddl/contrib/opensolaris/lib/libzpool/common/kernel.c Fri Aug 8 18:00:23 2014 (r269730) @@ -687,7 +687,7 @@ __dprintf(const char *file, const char * if (dprintf_find_string("pid")) (void) printf("%d ", getpid()); if (dprintf_find_string("tid")) - (void) printf("%ul ", thr_self()); + (void) printf("%lu ", thr_self()); #if 0 if (dprintf_find_string("cpu")) (void) printf("%u ", getcpuid()); _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
