aboutsummaryrefslogtreecommitdiffstatshomepage
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
commitf1120c542b0577e236401251c9af324555049408 (patch)
tree59861b5427dbb69803cd296aa2d0ff02c22d0153 /manpath.h
parent8de4ded6987a3b6b7319c84e37ec2740d8b3f0aa (diff)
downloadmandoc-f1120c542b0577e236401251c9af324555049408.tar.gz
mandoc-f1120c542b0577e236401251c9af324555049408.tar.zst
mandoc-f1120c542b0577e236401251c9af324555049408.zip
Use size_t in manpath instead of int.
Diffstat (limited to 'manpath.h')
-rw-r--r--manpath.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/manpath.h b/manpath.h
index 167ee010..2fe1b36e 100644
--- a/manpath.h
+++ b/manpath.h
@@ -1,4 +1,4 @@
-/* $Id: manpath.h,v 1.5 2011/12/13 20:56:46 kristaps Exp $ */
+/* $Id: manpath.h,v 1.6 2012/06/08 10:32:40 kristaps Exp $ */
/*
* Copyright (c) 2011 Ingo Schwarze <schwarze@openbsd.org>
* Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -23,7 +23,7 @@
* databases.
*/
struct manpaths {
- int sz;
+ size_t sz;
char **paths;
};