1
0
mirror of https://github.com/moparisthebest/wget synced 2024-07-03 16:38:41 -04:00

[svn] Put empty for loop body on separate line.

This commit is contained in:
hniksic 2005-07-07 08:28:34 -07:00
parent c88707ce4b
commit 7d773e86b7

View File

@ -1133,7 +1133,8 @@ fnmatch (const char *pattern, const char *string, int flags)
{
register const char *np;
for (np = p; np && *np && *np != ']'; np++);
for (np = p; np && *np && *np != ']'; np++)
;
if (np && !*np)
{