(nxtitemp): Use void * for generic pointer function value.

This commit is contained in:
Markus Armbruster 2006-01-06 16:55:17 +00:00
parent e66d0bfb83
commit 8e5d576fff
4 changed files with 10 additions and 11 deletions

View file

@ -45,7 +45,7 @@
#include "gen.h"
#include "common.h"
s_char *
void *
nxtitemp(struct nstr_item *np)
{
struct genitem *gp;
@ -106,5 +106,5 @@ nxtitemp(struct nstr_item *np)
selected = 0;
}
} while (!selected);
return (s_char *)gp;
return gp;
}