summaryrefslogtreecommitdiff
path: root/include/ctables.h
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-12-05 20:51:51 +0100
committerattilamolnar <attilamolnar@hush.com>2012-12-05 21:49:39 +0100
commit73074b0a78ffb91dcb42405ce21dc0a88fcd22b9 (patch)
tree11ed98dacc463aa8c892c9931039e0b61d32019e /include/ctables.h
parent850563d175e29ddcc90472dfee6fd9b261a5dc40 (diff)
Change a few signed counter variables to unsigned so they roll over later
Diffstat (limited to 'include/ctables.h')
-rw-r--r--include/ctables.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ctables.h b/include/ctables.h
index f016dd4c5..02bea198d 100644
--- a/include/ctables.h
+++ b/include/ctables.h
@@ -118,11 +118,11 @@ class CoreExport Command : public ServiceProvider
/** used by /stats m
*/
- long use_count;
+ unsigned long use_count;
/** used by /stats m
*/
- long total_bytes;
+ unsigned long total_bytes;
/** True if the command is disabled to non-opers
*/