Author: truckman
Date: Wed Mar  9 17:40:33 2016
New Revision: 296568
URL: https://svnweb.freebsd.org/changeset/base/296568

Log:
  MFC r283869 (by araujo)
  
  Fix the wrong format, format specifies type 'int' but the argument has type
  'long', it was spotted by clang.

Modified:
  stable/10/contrib/diff/src/context.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/contrib/diff/src/context.c
==============================================================================
--- stable/10/contrib/diff/src/context.c        Wed Mar  9 16:05:13 2016        
(r296567)
+++ stable/10/contrib/diff/src/context.c        Wed Mar  9 17:40:33 2016        
(r296568)
@@ -62,7 +62,7 @@ print_context_label (char const *mark,
        {
          time_t sec = inf->stat.st_mtime;
          verify (info_preserved, sizeof inf->stat.st_mtime <= sizeof sec);
-         sprintf (buf, "%jd.%.9d", (intmax_t)sec, nsec);
+         sprintf (buf, "%jd.%.9ld", (intmax_t)sec, nsec);
        }
       fprintf (outfile, "%s %s\t%s\n", mark, inf->name, buf);
     }
_______________________________________________
svn-src-stable-10@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-stable-10
To unsubscribe, send any mail to "svn-src-stable-10-unsubscr...@freebsd.org"

Reply via email to