diff options
Diffstat (limited to 'src/dict.h')
-rw-r--r-- | src/dict.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dict.h b/src/dict.h index e31daee2a..967a238b6 100644 --- a/src/dict.h +++ b/src/dict.h @@ -78,7 +78,7 @@ typedef struct dict { void *privdata; dictht ht[2]; long rehashidx; /* rehashing not in progress if rehashidx == -1 */ - int iterators; /* number of iterators currently running */ + unsigned long iterators; /* number of iterators currently running */ } dict; /* If safe is set to 1 this is a safe iterator, that means, you can call |