summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteffen Trumtrar <s.trumtrar@pengutronix.de>2013-04-25 17:12:22 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-04-26 07:27:37 +0200
commitbbe01fedf5328ff4e1e1f18401d88cd882bc67e3 (patch)
treec147ce4055127fa771b464303e3515833af48222
parent97c636365ec043cdb6ecdb661a8e10dcfec779ba (diff)
downloadbarebox-bbe01fedf5328ff4e1e1f18401d88cd882bc67e3.tar.gz
barebox-bbe01fedf5328ff4e1e1f18401d88cd882bc67e3.tar.xz
of: property: fix error message
At least in standard oxford english one not is enough. Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--commands/of_property.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/of_property.c b/commands/of_property.c
index 6311b7022a..44bb38801e 100644
--- a/commands/of_property.c
+++ b/commands/of_property.c
@@ -62,7 +62,7 @@ static int of_parse_prop_cells(char * const *newval, int count, char *data, int
/* If the ptr didn't advance, something went wrong */
if ((newp - cp) <= 0) {
- printf("cannot not convert \"%s\"\n", cp);
+ printf("cannot convert \"%s\"\n", cp);
return -EINVAL;
}
@@ -105,7 +105,7 @@ static int of_parse_prop_stream(char * const *newval, int count, char *data, int
/* If the ptr didn't advance, something went wrong */
if ((newp - cp) <= 0) {
- printf("cannot not convert \"%s\"\n", cp);
+ printf("cannot convert \"%s\"\n", cp);
return -EINVAL;
}
}