diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-28 17:07:22 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-05-28 17:07:22 +0200 |
commit | 171932d7ca62dbb0e0b84a0919e1f3a8a68f03f2 (patch) | |
tree | 52c24c5235afcd6973268f73b65957d360078eba /shell | |
parent | e640cb4ad162422f71d267615da9cfe7ddfe6a2e (diff) | |
download | busybox-171932d7ca62dbb0e0b84a0919e1f3a8a68f03f2.tar.gz |
hust: trivial simplification in builtin_type
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'shell')
-rw-r--r-- | shell/hush.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/shell/hush.c b/shell/hush.c index 1d4470efa..add40eb5f 100644 --- a/shell/hush.c +++ b/shell/hush.c @@ -6762,10 +6762,8 @@ static int builtin_type(char **argv) int ret = EXIT_SUCCESS; while (*++argv) { - char *path; const char *type; - - type = path = NULL; + char *path = NULL; if (0) {} /* make conditional compile easier below */ /*else if (find_alias(*argv)) |