config_compile(): fix as signed / unsigned comparison compiler warning.

Michael
This commit is contained in:
Michael Adam 2009-08-04 15:27:28 +02:00
parent f52be1a2a1
commit 0b583194b7

View File

@ -241,7 +241,7 @@ const unsigned int ndirectives = sizeof (directives) / sizeof (directives[0]);
int int
config_compile (void) config_compile (void)
{ {
int i, r; unsigned int i, r;
for (i = 0; i != ndirectives; ++i) for (i = 0; i != ndirectives; ++i)
{ {