Patch 1/2:

Pet gcc: enclose the for loop that currently do nothing with an if.

Reviewed by:	sha256(1)
X-MFC-With:	r262447
This commit is contained in:
Xin LI 2014-02-24 23:56:09 +00:00
parent 9516467e96
commit 5ce96980eb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=262461

View File

@ -457,6 +457,7 @@ _citrus_VIQR_encoding_module_init(_VIQREncodingInfo * __restrict ei,
return (errnum);
}
}
if (mnemonic_ext > 0) {
for (i = 0; i < mnemonic_ext_size; ++i) {
p = &mnemonic_ext[i];
n = strlen(p->name);
@ -469,6 +470,7 @@ _citrus_VIQR_encoding_module_init(_VIQREncodingInfo * __restrict ei,
return (errnum);
}
}
}
return (0);
}