diff --git a/src/sbbs3/getstats.c b/src/sbbs3/getstats.c index 0a977e6d4a8145dd28454ad4f13ad2a894096bc6..aa307b5b3ef77c93bf51de6f5fd65201e958368b 100644 --- a/src/sbbs3/getstats.c +++ b/src/sbbs3/getstats.c @@ -90,7 +90,7 @@ BOOL inc_sys_upload_stats(scfg_t* cfg, ulong files, ulong bytes) { char str[MAX_PATH+1]; int file; - uint32_t val; + uint32_t val; // TODO: support > 4GB uploads in a day SAFEPRINTF(str,"%sdsts.dab",cfg->ctrl_dir); if((file=nopen(str,O_RDWR))==-1) @@ -113,7 +113,7 @@ BOOL inc_sys_download_stats(scfg_t* cfg, ulong files, ulong bytes) { char str[MAX_PATH+1]; int file; - uint32_t val; + uint32_t val; // TODO: support > 4GB downloads in a day SAFEPRINTF(str,"%sdsts.dab",cfg->ctrl_dir); if((file=nopen(str,O_RDWR))==-1)