Author: gavin
Date: Sat Jul  5 19:53:21 2014
New Revision: 268298
URL: http://svnweb.freebsd.org/changeset/base/268298

Log:
  Correct format string to fix build of uhsoctl when DEBUG is defined
  
  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:49:31 2014        
(r268297)
+++ head/usr.sbin/uhsoctl/uhsoctl.c     Sat Jul  5 19:53:21 2014        
(r268298)
@@ -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 (%d)\n", resp, l);
+               fprintf(stderr, "SYNC_EXP: %s (%zd)\n", resp, l);
 #endif
        }
 
_______________________________________________
svn-src-head@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to