summaryrefslogtreecommitdiffstats
path: root/manpath.h
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2012-06-08 10:32:40 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2012-06-08 10:32:40 +0000
commit1d3922ed025e3a5e6c01197099d9ddc1b1702fb4 (patch)
tree5107eabde98821b27e2705a62535affb96632b25 /manpath.h
parentb54fbe2cf81da52f2095a8ab3d9b0a334b715161 (diff)
downloadmandoc-1d3922ed025e3a5e6c01197099d9ddc1b1702fb4.tar.gz
Use size_t in manpath instead of int.
Diffstat (limited to 'manpath.h')
-rw-r--r--manpath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/manpath.h b/manpath.h
index 030e4f0e..9331df9f 100644
--- a/manpath.h
+++ b/manpath.h
@@ -23,7 +23,7 @@
* databases.
*/
struct manpaths {
- int sz;
+ size_t sz;
char **paths;
};