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>
This commit is contained in:
Mike Frysinger 2013-05-24 18:04:43 +10:00 committed by David Gibson
parent 03449b84c8
commit b9e80656f2
7 changed files with 24 additions and 24 deletions

View file

@ -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);