From 77ed2e5989e7b0d5dfcf5a4c943e005082d2c397 Mon Sep 17 00:00:00 2001 From: Andrew Wood Date: Sat, 27 Sep 2025 18:32:27 +0100 Subject: [PATCH] Another minor issue noted as a TODO. --- src/pv/loop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pv/loop.c b/src/pv/loop.c index 9da28cd..91aefb9 100644 --- a/src/pv/loop.c +++ b/src/pv/loop.c @@ -648,6 +648,7 @@ int pv_watchfd_loop(pvstate_t state) if (NULL == original_format_string) { (void) pv_snprintf(new_format_string, sizeof(new_format_string), "%%N"); } else if (NULL == strstr(original_format_string, "%N")) { + /* TODO: also check for %{name} as well as %N. */ (void) pv_snprintf(new_format_string, sizeof(new_format_string), "%%N %s", original_format_string); } else {