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
1 changed files with 1 additions and 1 deletions

View File

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