1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-14 03:30:02 +00:00

firmware: use __FUNCTION__ in consistency with the rest of the code

This commit is contained in:
Pavol Rusnak 2017-10-11 23:23:08 +02:00
parent 7babde646e
commit 98ad17e1ea
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -14,7 +14,7 @@ int mp_hal_stdin_rx_chr(void) {
} }
return c; return c;
} else { } else {
__fatal_error("vcp stdio is not configured", __FILE__, __LINE__, __func__); __fatal_error("vcp stdio is not configured", __FILE__, __LINE__, __FUNCTION__);
} }
} }