diff options
Diffstat (limited to 'src/boot/bootctl.c')
-rw-r--r-- | src/boot/bootctl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/boot/bootctl.c b/src/boot/bootctl.c index 6243c6e2f5..0dc19c4bb6 100644 --- a/src/boot/bootctl.c +++ b/src/boot/bootctl.c @@ -1286,7 +1286,7 @@ static int verb_status(int argc, char *argv[], void *userdata) { r = 0; /* If we couldn't determine the path, then don't consider that a problem from here on, just show what we * can show */ - (void) pager_open(arg_pager_flags); + pager_open(arg_pager_flags); if (is_efi_boot()) { static const struct { @@ -1444,7 +1444,7 @@ static int verb_list(int argc, char *argv[], void *userdata) { if (config.n_entries == 0) log_info("No boot loader entries found."); else { - (void) pager_open(arg_pager_flags); + pager_open(arg_pager_flags); printf("Boot Loader Entries:\n"); |