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

MFC after: 1 week
Sponsored by: EMC / Isilon Storage Division
This commit is contained in:
Enji Cooper 2016-05-14 20:28:23 +00:00
parent 031987d916
commit 9a3ebeefc0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=299760

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')