Skip to content
Snippets Groups Projects
Commit c4a89d29 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

get strlen() results in a size_t, delete 'register'

parent 306ff564
No related branches found
No related tags found
No related merge requests found
......@@ -742,10 +742,10 @@ ToYear (int Year)
static int
LookupWord (YYSTYPE *yylval, char *buff)
{
register char *p;
register char *q;
register const TABLE *tp;
int i;
char *p;
char *q;
const TABLE *tp;
size_t i;
int abbrev;
/* Make it lowercase. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment