summaryrefslogtreecommitdiff
path: root/pkg/e2fsprogs/patch/0002-Fix-format-specifier-in-error-message.patch
diff options
context:
space:
mode:
authorMichael Forney <mforney@mforney.org>2021-01-29 14:01:15 -0800
committerMichael Forney <mforney@mforney.org>2021-01-29 14:01:15 -0800
commitd545550d4d2a92b6dfdfa3a20e4509c72e0ba9f3 (patch)
tree75747751453027b4a3f8d298822f7f068e472e38 /pkg/e2fsprogs/patch/0002-Fix-format-specifier-in-error-message.patch
parent5a2f2d11116a20beffa1b278c4b56c07833f7b1d (diff)
e2fsprogs: Update to 1.45.7
Diffstat (limited to 'pkg/e2fsprogs/patch/0002-Fix-format-specifier-in-error-message.patch')
-rw-r--r--pkg/e2fsprogs/patch/0002-Fix-format-specifier-in-error-message.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/pkg/e2fsprogs/patch/0002-Fix-format-specifier-in-error-message.patch b/pkg/e2fsprogs/patch/0002-Fix-format-specifier-in-error-message.patch
deleted file mode 100644
index eef95b2c..00000000
--- a/pkg/e2fsprogs/patch/0002-Fix-format-specifier-in-error-message.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From b346ce6f199dccc18caf26d25473f1841c51007d Mon Sep 17 00:00:00 2001
-From: Michael Forney <mforney@mforney.org>
-Date: Fri, 5 Jun 2020 01:27:30 -0700
-Subject: [PATCH] Fix format specifier in error message
-
----
- e2fsck/util.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/e2fsck/util.c b/e2fsck/util.c
-index d98b8e47..b0e01cc9 100644
---- a/e2fsck/util.c
-+++ b/e2fsck/util.c
-@@ -126,7 +126,7 @@ void *e2fsck_allocate_memory(e2fsck_t ctx, unsigned long size,
- printf("Allocating %u bytes for %s...\n", size, description);
- #endif
- if (ext2fs_get_memzero(size, &ret)) {
-- sprintf(buf, "Can't allocate %u bytes for %s\n",
-+ sprintf(buf, "Can't allocate %lu bytes for %s\n",
- size, description);
- fatal_error(ctx, buf);
- }
---
-2.27.0
-