summaryrefslogtreecommitdiffstats
path: root/common/complete.c
diff options
context:
space:
mode:
authorSteffen Trumtrar <s.trumtrar@pengutronix.de>2012-06-13 19:27:46 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-06-30 12:47:04 +0200
commitf2bfcf98a150ea3da1fe6748e79ed74f8c44439d (patch)
treef6adfdfa8e185f0440628d5c3d396991eaff6c15 /common/complete.c
parenta6e358b2f5b219fda18a7bc9348cb969043c19d5 (diff)
downloadbarebox-f2bfcf98a150ea3da1fe6748e79ed74f8c44439d.tar.gz
barebox-f2bfcf98a150ea3da1fe6748e79ed74f8c44439d.tar.xz
common: fix typo cammand_var_complete
Change function name to command_var_complete in all calls and its declaration. Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common/complete.c')
-rw-r--r--common/complete.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/complete.c b/common/complete.c
index 0780888cae..4370b20804 100644
--- a/common/complete.c
+++ b/common/complete.c
@@ -198,7 +198,7 @@ int empty_complete(struct string_list *sl, char *instr)
return COMPLETE_END;
}
-int cammand_var_complete(struct string_list *sl, char *instr)
+int command_var_complete(struct string_list *sl, char *instr)
{
return COMPLETE_CONTINUE;
}