[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 1/2] cryptodisk: Fix translatable message
From: |
Vladimir Serbinenko |
Subject: |
[PATCH 1/2] cryptodisk: Fix translatable message |
Date: |
Mon, 17 Jun 2024 15:56:30 +0300 |
Fixes bug #64408.
Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com>
---
grub-core/disk/cryptodisk.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/grub-core/disk/cryptodisk.c b/grub-core/disk/cryptodisk.c
index f98acade6..5e1eb2743 100644
--- a/grub-core/disk/cryptodisk.c
+++ b/grub-core/disk/cryptodisk.c
@@ -1359,9 +1359,9 @@ grub_cmd_cryptomount (grub_extcmd_context_t ctxt, int
argc, char **args)
if (keyfile_offset > keyfile->size)
return grub_error (GRUB_ERR_OUT_OF_RANGE,
- N_("Keyfile offset, %llu, is greater than"
- "keyfile size, %" PRIuGRUB_UINT64_T),
- keyfile_offset, keyfile->size);
+ N_("Keyfile offset, %llu, is greater than "
+ "keyfile size, %llu"),
+ keyfile_offset, (unsigned long long) keyfile->size);
if (grub_file_seek (keyfile, (grub_off_t) keyfile_offset) ==
(grub_off_t) -1)
return grub_errno;
--
2.39.2
- [PATCH 1/2] cryptodisk: Fix translatable message,
Vladimir Serbinenko <=