summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/manpath.h
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2013-05-29 23:15:11 +0000
committerschwarze <schwarze@openbsd.org>2013-05-29 23:15:11 +0000
commit3db9e7af637e84b58ad711f67e6c5bffa44048ff (patch)
tree26f5f067224916bbc82206ccf2d5649c48b7015e /usr.bin/mandoc/manpath.h
parentadd another pid for Intel Centrino Advanced-N 6235 (diff)
downloadwireguard-openbsd-3db9e7af637e84b58ad711f67e6c5bffa44048ff.tar.xz
wireguard-openbsd-3db9e7af637e84b58ad711f67e6c5bffa44048ff.zip
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;
};