mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-18 23:54:39 +00:00
driver: Remove some stray __FILE__ macros
Related to https://github.com/espressif/esp-idf/issues/6306
This commit is contained in:
@@ -29,7 +29,7 @@ extern "C" {
|
||||
|
||||
#define TE_CHECK(cond, ret_val) ({ \
|
||||
if (!(cond)) { \
|
||||
ESP_LOGE(TE_TAG, "%s:%d (%s)", __FILE__, __LINE__, __FUNCTION__); \
|
||||
ESP_LOGE(TE_TAG, "%s(%d)", __FUNCTION__, __LINE__); \
|
||||
return (ret_val); \
|
||||
} \
|
||||
})
|
||||
|
Reference in New Issue
Block a user