aboutsummaryrefslogtreecommitdiffstats
path: root/search.c
diff options
context:
space:
mode:
authorokan2014-01-03 15:29:06 +0000
committerokan2014-01-03 15:29:06 +0000
commit7c3d7c7e009aba5952f235258aecebf4a42fcd3a (patch)
tree7970da959e352c005af1dbe5fd3562f4e58088f5 /search.c
parentfa1e0bfcb82d655544296d192c8df094a7895039 (diff)
downloadcwm-7c3d7c7e009aba5952f235258aecebf4a42fcd3a.tar.gz
use consistent types
Diffstat (limited to '')
-rw-r--r--search.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/search.c b/search.c
index 6f03a4b..b9c4130 100644
--- a/search.c
+++ b/search.c
@@ -15,7 +15,7 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
- * $OpenBSD: search.c,v 1.34 2013/12/11 14:09:21 okan Exp $
+ * $OpenBSD: search.c,v 1.35 2014/01/03 15:29:06 okan Exp $
*/
#include <sys/param.h>
@@ -253,8 +253,8 @@ search_match_exec_path(struct menu_q *menuq, struct menu_q *resultq, char *searc
static int
strsubmatch(char *sub, char *str, int zeroidx)
{
- size_t len, sublen;
- u_int n, flen;
+ size_t len, sublen;
+ unsigned int n, flen;
if (sub == NULL || str == NULL)
return (0);