svn commit: r268299 - head/usr.sbin/uhsoctl

Gavin Atkinson gavin at FreeBSD.org
Sat Jul 5 20:08:26 UTC 2014


Author: gavin
Date: Sat Jul  5 20:08:25 2014
New Revision: 268299
URL: http://svnweb.freebsd.org/changeset/base/268299

Log:
  Use %zu not %zd for printing size_t.
  
  PR:		185007
  Submitted by:	saper saper.info
  MFC after:	3 days

Modified:
  head/usr.sbin/uhsoctl/uhsoctl.c

Modified: head/usr.sbin/uhsoctl/uhsoctl.c
==============================================================================
--- head/usr.sbin/uhsoctl/uhsoctl.c	Sat Jul  5 19:53:21 2014	(r268298)
+++ head/usr.sbin/uhsoctl/uhsoctl.c	Sat Jul  5 20:08:25 2014	(r268299)
@@ -601,7 +601,7 @@ at_cmd(struct ctx *ctx, const char *resp
 	if (resp != NULL) {
 		l = strlen(resp);
 #ifdef DEBUG
-		fprintf(stderr, "SYNC_EXP: %s (%zd)\n", resp, l);
+		fprintf(stderr, "SYNC_EXP: %s (%zu)\n", resp, l);
 #endif
 	}
 


More information about the svn-src-head mailing list