Avoid compiler warnings.

This commit is contained in:
Mike Pall 2011-01-12 18:22:00 +01:00
parent 8d858bfefa
commit 1548383dbe

View File

@ -158,7 +158,7 @@ static void clib_unloadlib(CLibrary *cl)
static void *clib_getsym(CLibrary *cl, const char *name)
{
void *p;
void *p = NULL;
if (cl->handle == CLIB_DEFHANDLE) { /* Search default libraries. */
MSize i;
for (i = 0; i < CLIB_HANDLE_MAX; i++) {