From 277e78d7151a5c480a2bb4b4a66288e5d26a79b3 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Wed, 21 Sep 2022 17:28:28 +0200 Subject: [PATCH] libmount: remove upper-case from debug message Signed-off-by: Karel Zak --- libmount/src/hooks.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libmount/src/hooks.c b/libmount/src/hooks.c index c467d420ba..b95e6c4263 100644 --- a/libmount/src/hooks.c +++ b/libmount/src/hooks.c @@ -281,7 +281,7 @@ int mnt_context_call_hooks(struct libmnt_context *cxt, int stage) size_t i; int rc = 0; - DBG(CXT, ul_debugobj(cxt, "---> ENTER-STAGE %s", stagenames[stage])); + DBG(CXT, ul_debugobj(cxt, "---> stage:%s", stagenames[stage])); /* call initial hooks */ for (i = 0; i < ARRAY_SIZE(hooksets); i++) { @@ -312,7 +312,7 @@ int mnt_context_call_hooks(struct libmnt_context *cxt, int stage) } done: - DBG(CXT, ul_debugobj(cxt, "<--- DONE-STAGE %s [rc=%d status=%d]", + DBG(CXT, ul_debugobj(cxt, "<--- stage:%s [rc=%d status=%d]", stagenames[stage], rc, cxt->syscall_status)); return rc; } -- 2.47.3