summaryrefslogtreecommitdiffstats
path: root/mbbsd/record.c
diff options
context:
space:
mode:
Diffstat (limited to 'mbbsd/record.c')
-rw-r--r--mbbsd/record.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mbbsd/record.c b/mbbsd/record.c
index 13db0da6..cc82cde8 100644
--- a/mbbsd/record.c
+++ b/mbbsd/record.c
@@ -1,4 +1,4 @@
-/* $Id: record.c,v 1.11 2002/11/06 16:25:15 in2 Exp $ */
+/* $Id: record.c,v 1.12 2002/12/31 17:40:51 in2 Exp $ */
#include "bbs.h"
#undef HAVE_MMAP
@@ -444,7 +444,7 @@ int apply_record(char *fpath, int (*fptr) (), int size){
if (!(fp = fopen(fpath, "r")))
return -1;
- while (fread(abuf, 1, size, fp) == size)
+ while (fread(abuf, 1, size, fp) == (size_t)size)
if ((*fptr) (abuf) == QUIT) {
fclose(fp);
return QUIT;