From fe897b1b313e59db9830c73fed7d502241cb9427 Mon Sep 17 00:00:00 2001 From: folkert van heusden Date: Thu, 16 May 2024 18:06:25 +0200 Subject: [PATCH] missing parameter --- main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.cpp b/main.cpp index 9b11f9e..6166586 100644 --- a/main.cpp +++ b/main.cpp @@ -586,7 +586,7 @@ int main(int argc, char *argv[]) JsonDocument j; DeserializationError error = deserializeJson(j, j_in); if (error) - error_exit(true, "State file %s is corrupt: %s", error.c_str()); + error_exit(true, "State file %s is corrupt: %s", deserialize.c_str(), error.c_str()); b = bus::deserialize(j, cnsl, &event);