aboutsummaryrefslogtreecommitdiff
path: root/fdtdump.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2013-05-24 18:04:43 +1000
committerDavid Gibson <david@gibson.dropbear.id.au>2013-05-24 18:20:53 +1000
commitb9e80656f2de441826ed2ff1cd9c5d43b3ae43d3 (patch)
treed0f093d618038577d98fcd463e4b4e7b639ebc60 /fdtdump.c
parent03449b84c8f9aee2bf2f438bec2c2ec4606bea48 (diff)
downloaddtc-b9e80656f2de441826ed2ff1cd9c5d43b3ae43d3.zip
dtc-b9e80656f2de441826ed2ff1cd9c5d43b3ae43d3.tar.gz
dtc-b9e80656f2de441826ed2ff1cd9c5d43b3ae43d3.tar.bz2
util: drop "long" from usage helpers
Now that all utils have converted to the new usage framework, we can rename to just plain "usage()" and avoid naming conflicts. Signed-off-by: Mike Frysinger <vapier@gentoo.org> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'fdtdump.c')
-rw-r--r--fdtdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fdtdump.c b/fdtdump.c
index c8a3ee7..c2f16ea 100644
--- a/fdtdump.c
+++ b/fdtdump.c
@@ -149,7 +149,7 @@ int main(int argc, char *argv[])
}
}
if (optind != argc - 1)
- long_usage("missing input filename");
+ usage("missing input filename");
file = argv[optind];
buf = utilfdt_read_len(file, &len);