diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2012-06-08 10:32:40 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2012-06-08 10:32:40 +0000 |
commit | 1d3922ed025e3a5e6c01197099d9ddc1b1702fb4 (patch) | |
tree | 5107eabde98821b27e2705a62535affb96632b25 /manpath.h | |
parent | b54fbe2cf81da52f2095a8ab3d9b0a334b715161 (diff) | |
download | mandoc-1d3922ed025e3a5e6c01197099d9ddc1b1702fb4.tar.gz |
Use size_t in manpath instead of int.
Diffstat (limited to 'manpath.h')
-rw-r--r-- | manpath.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ * databases. */ struct manpaths { - int sz; + size_t sz; char **paths; }; |