mirror of
https://github.com/espressif/esp-idf.git
synced 2026-05-03 19:41:55 +02: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 @@ static const char *DAC_TAG = "DAC";
|
||||
|
||||
#define DAC_CHECK(a, str, ret_val) ({ \
|
||||
if (!(a)) { \
|
||||
ESP_LOGE(DAC_TAG,"%s:%d (%s):%s", __FILE__, __LINE__, __FUNCTION__, str); \
|
||||
ESP_LOGE(DAC_TAG,"%s(%d): %s", __FUNCTION__, __LINE__, str); \
|
||||
return (ret_val); \
|
||||
} \
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user