aboutsummaryrefslogtreecommitdiff
path: root/bin/date
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-01-25 08:59:08 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-01-25 08:59:08 +0000
commitc1e8822ae40c9472a9bde71ae5cdfad8f8b0f82e (patch)
tree833c9ec54ee95d77081c0a1759e166fe36b0d210 /bin/date
parent33b90a70cd8784331f07759cdfa9e2ea36ef69d5 (diff)
Notes
Diffstat (limited to 'bin/date')
-rw-r--r--bin/date/date.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/date/date.c b/bin/date/date.c
index f5f7eada3f52f..a66d53f2a54c8 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))