/*
- * Copyright (c) 1996, 1998-2005, 2007-2015
+ * Copyright (c) 1996, 1998-2005, 2007-2016
* Todd C. Miller <Todd.Miller@courtesan.com>
*
* Permission to use, copy, modify, and distribute this software for any
#include "toke.h"
#include <gram.h>
-static int arg_len = 0;
-static int arg_size = 0;
+static unsigned int arg_len = 0;
+static unsigned int arg_size = 0;
bool
fill_txt(const char *src, size_t len, size_t olen)
bool
fill_args(const char *s, size_t len, int addspace)
{
- int new_len;
+ unsigned int new_len;
char *p;
debug_decl(fill_args, SUDOERS_DEBUG_PARSER)