]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
time_t != long; fix minor type problem.
authorcjs <cjs@NetBSD.org>
Mon, 13 Oct 1997 21:05:36 +0000 (21:05 +0000)
committercjs <cjs@NetBSD.org>
Mon, 13 Oct 1997 21:05:36 +0000 (21:05 +0000)
battlestar/com6.c

index 86abed1f8a67edcd9ffd186977d4ba7132435de3..adb34a62479813f4394876f99934cc91b6db4c8a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: com6.c,v 1.8 1997/10/11 02:07:08 lukem Exp $   */
+/*     $NetBSD: com6.c,v 1.9 1997/10/13 21:05:36 cjs Exp $     */
 
 /*
  * Copyright (c) 1983, 1993
@@ -38,7 +38,7 @@
 #if 0
 static char sccsid[] = "@(#)com6.c     8.2 (Berkeley) 4/28/95";
 #else
-__RCSID("$NetBSD: com6.c,v 1.8 1997/10/11 02:07:08 lukem Exp $");
+__RCSID("$NetBSD: com6.c,v 1.9 1997/10/13 21:05:36 cjs Exp $");
 #endif
 #endif                         /* not lint */
 
@@ -111,6 +111,7 @@ post(ch)
 {
        FILE   *fp;
        struct timeval tv;
+       time_t tvsec;
        char   *date;
        sigset_t sigset, osigset;
 
@@ -118,7 +119,8 @@ post(ch)
        sigaddset(&sigset, SIGINT);
        sigprocmask(SIG_BLOCK, &sigset, &osigset);
        gettimeofday(&tv, (struct timezone *) 0);       /* can't call time */
-       date = ctime(&tv.tv_sec);
+       tvsec = (time_t) tv.tv_sec;
+       date = ctime(&tvsec);
        date[24] = '\0';
        if ((fp = fopen(_PATH_SCORE, "a")) != NULL) {
                fprintf(fp, "%s  %8s  %c%20s", date, uname, ch, rate());