diff options
Diffstat (limited to 'strvec.h')
-rw-r--r-- | strvec.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -29,8 +29,8 @@ extern const char *empty_strvec[]; */ struct strvec { const char **v; - int nr; - int alloc; + size_t nr; + size_t alloc; }; #define STRVEC_INIT { empty_strvec, 0, 0 } |