summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/manpath.h
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2013-05-29 23:15:12 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2013-05-29 23:15:12 +0000
commit313d6b9da3054fd8cd2be27c88ed5ecf249e97fb (patch)
treecdf1f3dfc1cb35804abe1ef4e33c020af6e03ca1 /usr.bin/mandoc/manpath.h
parentc75c734490a599a8d5dcbecb295894f1c6c3b29f (diff)
Trivial sync to bsd.lv:
Kristaps changed the size member of struct manpaths from int to size_t. No functional change.
Diffstat (limited to 'usr.bin/mandoc/manpath.h')
-rw-r--r--usr.bin/mandoc/manpath.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mandoc/manpath.h b/usr.bin/mandoc/manpath.h
index 4b2233d17a2..c2d3bb14bea 100644
--- a/usr.bin/mandoc/manpath.h
+++ b/usr.bin/mandoc/manpath.h
@@ -1,4 +1,4 @@
-/* $Id: manpath.h,v 1.3 2011/12/19 02:26:33 schwarze Exp $ */
+/* $Id: manpath.h,v 1.4 2013/05/29 23:15:11 schwarze 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;
};