diff options
| author | John Birrell <jb@FreeBSD.org> | 1998-01-25 08:59:08 +0000 |
|---|---|---|
| committer | John Birrell <jb@FreeBSD.org> | 1998-01-25 08:59:08 +0000 |
| commit | c1e8822ae40c9472a9bde71ae5cdfad8f8b0f82e (patch) | |
| tree | 833c9ec54ee95d77081c0a1759e166fe36b0d210 /bin | |
| parent | 33b90a70cd8784331f07759cdfa9e2ea36ef69d5 (diff) | |
Notes
Diffstat (limited to 'bin')
| -rw-r--r-- | bin/date/date.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/date/date.c b/bin/date/date.c index f5f7eada3f52..a66d53f2a54c 100644 --- a/bin/date/date.c +++ b/bin/date/date.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: date.c,v 1.21 1997/10/03 12:49:28 danny Exp $ + * $Id: date.c,v 1.22 1997/12/11 02:38:56 brian Exp $ */ #ifndef lint @@ -187,9 +187,9 @@ setthetime(fmt, p) lt = localtime(&tval); return; } else if (*t != '\0') - fprintf(stderr, "Warning: Ignoring %d extraneous" + fprintf(stderr, "Warning: Ignoring %ld extraneous" " characters in date string (%s)\n", - strlen(t), t); + (long) strlen(t), t); } else { for (t = p, dot = NULL; *t; ++t) { if (isdigit(*t)) |
