diff options
author | Erwan Velu <erwan.velu@free.fr> | 2009-11-22 21:50:46 +0100 |
---|---|---|
committer | Erwan Velu <erwan.velu@free.fr> | 2009-11-22 21:50:46 +0100 |
commit | 069126f619f3b7a18a9d264c6a75508e8bc60203 (patch) | |
tree | 0d972d82e7e96d101e9e7bce0a6947c4fd71b030 | |
parent | b1eb568c18206bf17d868c77cfcabc45f7a754a7 (diff) | |
download | syslinux-069126f619f3b7a18a9d264c6a75508e8bc60203.tar.gz |
hdt: Renaming "show 88" to "show e88"
Impact: increasing coherency
Let's rename that function to keep more coherency with e820 & e801
-rw-r--r-- | com32/hdt/hdt-cli-memory.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/com32/hdt/hdt-cli-memory.c b/com32/hdt/hdt-cli-memory.c index 3f8ed75a..86a34ba2 100644 --- a/com32/hdt/hdt-cli-memory.c +++ b/com32/hdt/hdt-cli-memory.c @@ -65,7 +65,7 @@ static void show_memory_e801(int argc __unused, char **argv __unused, } } -static void show_memory_88(int argc __unused, char **argv __unused, +static void show_memory_e88(int argc __unused, char **argv __unused, struct s_hardware *hardware __unused) { int mem_size = 0; @@ -89,8 +89,8 @@ struct cli_callback_descr list_memory_show_modules[] = { .exec = show_memory_e801, }, { - .name = "88", - .exec = show_memory_88, + .name = "e88", + .exec = show_memory_e88, }, { .name = CLI_DMI_MEMORY_BANK, |