From e7460de0a104e870a790f0d2d83b8bfd6d8cfed4 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Thu, 6 Aug 2015 16:35:20 +1000 Subject: [PATCH] esp_system.h: Fix return type of sdk_system_get_rst_info --- include/espressif/esp_system.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/espressif/esp_system.h b/include/espressif/esp_system.h index 4a82105..93eea64 100644 --- a/include/espressif/esp_system.h +++ b/include/espressif/esp_system.h @@ -24,7 +24,7 @@ struct sdk_rst_info{ uint32_t rtn_addr; }; -struct rst_info* sdk_system_get_rst_info(void); +struct sdk_rst_info* sdk_system_get_rst_info(void); const char* sdk_system_get_sdk_version(void);