Merge branch 'bugfix/log_tag_variables_static' into 'master'

log: Remove non-static TAG variables

See merge request !1674
This commit is contained in:
Angus Gratton 2017-12-18 07:06:36 +08:00
commit 496f6d2744
2 changed files with 1 additions and 3 deletions

View file

@ -25,8 +25,6 @@
#include "esp_system.h" #include "esp_system.h"
#endif #endif
const char *TAG = "boot_rng";
void bootloader_fill_random(void *buffer, size_t length) void bootloader_fill_random(void *buffer, size_t length)
{ {
uint8_t *buffer_bytes = (uint8_t *)buffer; uint8_t *buffer_bytes = (uint8_t *)buffer;

View file

@ -35,7 +35,7 @@
#include "tcpip_adapter.h" #include "tcpip_adapter.h"
#include "esp_log.h" #include "esp_log.h"
const char* TAG = "event"; static const char* TAG = "event";
#define WIFI_API_CALL_CHECK(info, api_call, ret) \ #define WIFI_API_CALL_CHECK(info, api_call, ret) \
do{\ do{\