svn commit: r296568 - stable/10/contrib/diff/src
Don Lewis
truckman at FreeBSD.org
Wed Mar 9 17:40:35 UTC 2016
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);
}
More information about the svn-src-stable
mailing list