1
0
Fork 0

tools: env: replace WHITESPACE macro by isblank

Signed-off-by: Andreas Fenkart <andreas.fenkart@digitalstrom.com>
utp
Andreas Fenkart 2016-03-11 09:39:35 +01:00 committed by Tom Rini
parent adcc90b401
commit 10667e15f4
1 changed files with 3 additions and 4 deletions

7
tools/env/fw_env.c vendored
View File

@ -15,6 +15,7 @@
#include <env_flags.h>
#include <fcntl.h>
#include <linux/stringify.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
@ -36,8 +37,6 @@
#define DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
#define WHITESPACE(c) ((c == '\t') || (c == ' '))
#define min(x, y) ({ \
typeof(x) _min1 = (x); \
typeof(y) _min2 = (y); \
@ -140,8 +139,8 @@ static char *fw_string_blank(char *s, int noblank)
int len = strlen(s);
for (i = 0; i < len; i++, s++) {
if ((noblank && !WHITESPACE(*s)) ||
(!noblank && WHITESPACE(*s)))
if ((noblank && !isblank(*s)) ||
(!noblank && isblank(*s)))
break;
}
if (i == len)