@@ -167,17 +167,17 @@ static void postmortem_report(uint32_t sp_dump) {
167
167
cut_here ();
168
168
169
169
if (s_pm.panic_line ) {
170
- ets_printf_P (PSTR (" \n Panic %S :%d %S " ), s_pm.panic_file , s_pm.panic_line , s_pm.panic_func );
170
+ ets_printf_P (PSTR (" \n Panic %s :%d %s " ), s_pm.panic_file , s_pm.panic_line , s_pm.panic_func );
171
171
if (s_pm.panic_what ) {
172
- ets_printf_P (PSTR (" : Assertion '%S ' failed." ), s_pm.panic_what );
172
+ ets_printf_P (PSTR (" : Assertion '%s ' failed." ), s_pm.panic_what );
173
173
}
174
174
ets_putc (' \n ' );
175
175
}
176
176
else if (s_pm.panic_file ) {
177
- ets_printf_P (PSTR (" \n Panic %S \n " ), s_pm.panic_file );
177
+ ets_printf_P (PSTR (" \n Panic %s \n " ), s_pm.panic_file );
178
178
}
179
179
else if (s_pm.unhandled_exception ) {
180
- ets_printf_P (PSTR (" \n Unhandled C++ exception: %S \n " ), s_pm.unhandled_exception );
180
+ ets_printf_P (PSTR (" \n Unhandled C++ exception: %s \n " ), s_pm.unhandled_exception );
181
181
}
182
182
else if (s_pm.abort_called ) {
183
183
ets_printf_P (PSTR (" \n Abort called\n " ));
@@ -292,7 +292,7 @@ static void postmortem_report(uint32_t sp_dump) {
292
292
// Use cap-X formatting to ensure the standard EspExceptionDecoder doesn't match the address
293
293
if (_umm_last_fail_alloc.addr ) {
294
294
#if defined(DEBUG_ESP_OOM)
295
- ets_printf_P (PSTR (" \n last failed alloc call: 0x%08X(%d), File: %S :%d\n " ),
295
+ ets_printf_P (PSTR (" \n last failed alloc call: 0x%08X(%d), File: %s :%d\n " ),
296
296
(uint32_t )_umm_last_fail_alloc.addr ,
297
297
_umm_last_fail_alloc.size ,
298
298
(_umm_last_fail_alloc.file ) ? _umm_last_fail_alloc.file : PSTR (" ??" ),
0 commit comments