From d5691fe84988d728091babbbcec4650c7f9baddf Mon Sep 17 00:00:00 2001 From: Eric Blankenhorn Date: Wed, 17 Dec 2025 09:35:01 -0600 Subject: [PATCH] Fix MQX example null deref --- mqx/util_lib/Sources/util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mqx/util_lib/Sources/util.c b/mqx/util_lib/Sources/util.c index 78a30d20ac..1250a47078 100644 --- a/mqx/util_lib/Sources/util.c +++ b/mqx/util_lib/Sources/util.c @@ -88,7 +88,7 @@ int sdcard_open(MQX_FILE_PTR *com_handle, MQX_FILE_PTR *sdcard_handle, /* Open partition manager */ *partman_handle = fopen(partman_name, NULL); if (*partman_handle == NULL) { - printf("Error opening partition manager: %s\n"); + printf("Error opening partition manager\n"); return -64; }