Remove useless linebreaks in log messages

This commit is contained in:
2024-10-12 17:02:39 +02:00
parent cbca7c8f4c
commit e244fff700
4 changed files with 23 additions and 23 deletions

View File

@ -33,7 +33,7 @@ char *dev_name()
char *dev = malloc(len + strlen(DEV_PREFIX) + 1);
if (dev == NULL)
{
ESP_LOGE(TAG, "Failed to allocate memory to store dev name!\n");
ESP_LOGE(TAG, "Failed to allocate memory to store dev name!");
return NULL;
}