Replace whitespace indentations with tabs in 'lib/helper.c'.

This commit is contained in:
Zdenek Styblik 2012-01-21 08:31:09 +00:00
parent 835fe8886c
commit bb40822d34

View File

@ -132,17 +132,8 @@ const char * oemval2str(uint32_t oem, uint16_t val,
for (i = 0; vs[i].oem != 0xffffff && vs[i].str != NULL; i++) { for (i = 0; vs[i].oem != 0xffffff && vs[i].str != NULL; i++) {
/* FIXME: for now on we assume PICMG capability on all IANAs */ /* FIXME: for now on we assume PICMG capability on all IANAs */
if if ( (vs[i].oem == oem || vs[i].oem == IPMI_OEM_PICMG) &&
( vs[i].val == val ) {
(
vs[i].oem == oem
||
vs[i].oem == IPMI_OEM_PICMG
)
&&
vs[i].val == val
)
{
return vs[i].str; return vs[i].str;
} }
} }