26 lines
779 B
Diff
26 lines
779 B
Diff
From bb92eed6b57ed29d8230ca688ff73771b8b7e845 Mon Sep 17 00:00:00 2001
|
|
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
Date: Fri, 16 Jul 2021 09:49:04 +0100
|
|
Subject: [PATCH] lib/node.c: Fix minor typo in error message
|
|
|
|
---
|
|
lib/node.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/lib/node.c b/lib/node.c
|
|
index 21cd127..7b002a4 100644
|
|
--- a/lib/node.c
|
|
+++ b/lib/node.c
|
|
@@ -346,7 +346,7 @@ _hivex_get_children (hive_h *h, hive_node_h node,
|
|
if (!h->unsafe) {
|
|
SET_ERRNO (ENOTSUP,
|
|
"nr_subkeys_in_nk = %zu "
|
|
- "is not equal to number of childred read %zu",
|
|
+ "is not equal to number of children read %zu",
|
|
nr_subkeys_in_nk, nr_children);
|
|
goto error;
|
|
} else {
|
|
--
|
|
2.33.0
|
|
|