- very minor shrinkage

odd that this saved 1byte. And there could be something wrong with
  ifcombine or the like since omitting the braces produces bigger code?
This commit is contained in:
Bernhard Reutner-Fischer 2008-05-16 16:55:17 +00:00
parent dff6190112
commit b8635e28b5

View File

@ -64,11 +64,7 @@ int ll_addr_a2n(unsigned char *lladdr, int len, char *arg)
*cp = 0;
cp++;
}
if (sscanf(arg, "%x", &temp) != 1) {
bb_error_msg("\"%s\" is invalid lladdr", arg);
return -1;
}
if (temp < 0 || temp > 255) {
if (sscanf(arg, "%x", &temp) != 1 || (temp < 0 || temp > 255)) {
bb_error_msg("\"%s\" is invalid lladdr", arg);
return -1;
}