From 9d81511153fefe79be2ae65f8efae11a98e6b488 Mon Sep 17 00:00:00 2001 From: Kevin Hester Date: Fri, 12 Feb 2021 09:56:35 +0800 Subject: [PATCH] fix warning --- src/mesh/NodeDB.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/NodeDB.cpp b/src/mesh/NodeDB.cpp index 18e07f561..b8f0b5697 100644 --- a/src/mesh/NodeDB.cpp +++ b/src/mesh/NodeDB.cpp @@ -600,7 +600,7 @@ void recordCriticalError(CriticalErrorCode code, uint32_t address) // Print error to screen and serial port String lcd = String("Critical error ") + code + "!\n"; screen->print(lcd.c_str()); - DEBUG_MSG("NOTE! Recording critical error %d, address=%x\n", code, address); + DEBUG_MSG("NOTE! Recording critical error %d, address=%lx\n", code, address); // Record error to DB myNodeInfo.error_code = code;