Sort variables in parse_ascii(..) per style(9)

MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
ngie 2016-05-14 20:28:23 +00:00
parent 0431b4d7b1
commit 53763bdd72

View File

@ -444,9 +444,9 @@ parse_flist(struct snmp_toolinfo *snmptoolctx, char *value, char *path,
static int32_t
parse_ascii(char *ascii, uint8_t *binstr, size_t binlen)
{
int32_t alen, count, saved_errno, i;
uint32_t val;
char dptr[3];
int32_t alen, count, i, saved_errno;
uint32_t val;
/* Filter 0x at the beginning */
if ((alen = strlen(ascii)) > 2 && ascii[0] == '0' && ascii[1] == 'x')