Author: dim
Date: Fri Dec 16 16:07:39 2011
New Revision: 228586
URL: http://svn.freebsd.org/changeset/base/228586

Log:
  In libexec/pppoed/pppoed.c, use the correct printf length modifier for a
  size_t.
  
  MFC after:    1 week

Modified:
  head/libexec/pppoed/pppoed.c

Modified: head/libexec/pppoed/pppoed.c
==============================================================================
--- head/libexec/pppoed/pppoed.c        Fri Dec 16 15:58:38 2011        
(r228585)
+++ head/libexec/pppoed/pppoed.c        Fri Dec 16 16:07:39 2011        
(r228586)
@@ -570,8 +570,8 @@ main(int argc, char *argv[])
     }
     exec = (char *)alloca(sizeof DEFAULT_EXEC_PREFIX + strlen(label));
     if (exec == NULL) {
-      fprintf(stderr, "%s: Cannot allocate %d bytes\n", prog,
-              (int)(sizeof DEFAULT_EXEC_PREFIX) + strlen(label));
+      fprintf(stderr, "%s: Cannot allocate %zu bytes\n", prog,
+              sizeof DEFAULT_EXEC_PREFIX + strlen(label));
       return EX_OSERR;
     }
     strcpy(exec, DEFAULT_EXEC_PREFIX);
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to