* grub-core/commands/lsacpi.c (options): Add missing terminator.
This commit is contained in:
parent
9576977eab
commit
6d36a236d2
2 changed files with 7 additions and 2 deletions
|
@ -1,7 +1,11 @@
|
|||
2012-04-01 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* grub-core/commands/lsacpi.c (options): Add missing terminator.
|
||||
|
||||
2012-03-31 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
* include/grub/datetime.h (grub_datetime2unixtime): Fix handling of days
|
||||
aftert 29th of February.
|
||||
after 29th of February.
|
||||
|
||||
2012-03-31 Vladimir Serbinenko <phcoder@gmail.com>
|
||||
|
||||
|
|
|
@ -198,7 +198,8 @@ disp_acpi_rsdpv2 (struct grub_acpi_rsdp_v20 *rsdp)
|
|||
|
||||
static const struct grub_arg_option options[] = {
|
||||
{"v1", '1', 0, N_("Show version 1 tables only."), 0, ARG_TYPE_NONE},
|
||||
{"v2", '2', 0, N_("Show version 2 and version 3 tables only."), 0, ARG_TYPE_NONE}
|
||||
{"v2", '2', 0, N_("Show version 2 and version 3 tables only."), 0, ARG_TYPE_NONE},
|
||||
{0, 0, 0, 0, 0, 0}
|
||||
};
|
||||
|
||||
static grub_err_t
|
||||
|
|
Loading…
Reference in a new issue