diff options
author | 2013-05-29 23:15:11 +0000 | |
---|---|---|
committer | 2013-05-29 23:15:11 +0000 | |
commit | 3db9e7af637e84b58ad711f67e6c5bffa44048ff (patch) | |
tree | 26f5f067224916bbc82206ccf2d5649c48b7015e /usr.bin/mandoc/manpath.h | |
parent | add another pid for Intel Centrino Advanced-N 6235 (diff) | |
download | wireguard-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.h | 4 |
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; }; |