fix -Wsign-compare issue on amd64

This commit is contained in:
lukem 2009-04-11 12:55:29 +00:00
parent 5b2a99f633
commit f93f13ab6f
1 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: crontab.c,v 1.31 2009/04/11 12:44:29 lukem Exp $ */ /* $NetBSD: crontab.c,v 1.32 2009/04/11 12:55:29 lukem Exp $ */
/* Copyright 1988,1990,1993,1994 by Paul Vixie /* Copyright 1988,1990,1993,1994 by Paul Vixie
* All rights reserved * All rights reserved
@ -22,7 +22,7 @@
#if 0 #if 0
static char rcsid[] = "Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp"; static char rcsid[] = "Id: crontab.c,v 2.13 1994/01/17 03:20:37 vixie Exp";
#else #else
__RCSID("$NetBSD: crontab.c,v 1.31 2009/04/11 12:44:29 lukem Exp $"); __RCSID("$NetBSD: crontab.c,v 1.32 2009/04/11 12:55:29 lukem Exp $");
#endif #endif
#endif #endif
@ -554,7 +554,7 @@ replace_cmd(void) {
warn("error stat'ing crontab input"); warn("error stat'ing crontab input");
goto out; goto out;
} }
if (statbuf.st_size > maxtabsize) { if (statbuf.st_size > (off_t)maxtabsize) {
warnx("%ld bytes is larger than the maximum size of %ld bytes", warnx("%ld bytes is larger than the maximum size of %ld bytes",
(long) statbuf.st_size, (long) maxtabsize); (long) statbuf.st_size, (long) maxtabsize);
val = -1; val = -1;
@ -568,7 +568,7 @@ replace_cmd(void) {
fprintf(tmp, "# DO NOT EDIT THIS FILE - edit the master and reinstall.\n"); fprintf(tmp, "# DO NOT EDIT THIS FILE - edit the master and reinstall.\n");
fprintf(tmp, "# (%s installed on %-24.24s)\n", Filename, ctime(&now)); fprintf(tmp, "# (%s installed on %-24.24s)\n", Filename, ctime(&now));
fprintf(tmp, "# (Cron version -- %s)\n", fprintf(tmp, "# (Cron version -- %s)\n",
"$NetBSD: crontab.c,v 1.31 2009/04/11 12:44:29 lukem Exp $"); "$NetBSD: crontab.c,v 1.32 2009/04/11 12:55:29 lukem Exp $");
/* copy the crontab to the tmp /* copy the crontab to the tmp
*/ */