Skip to content

Commit 2b5879e

Browse files
committed
use int types for s32_t and u32_t.
1 parent 8811d53 commit 2b5879e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cores/esp8266/spiffs/spiffs_config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
#define c_memset os_memset
2020

2121
typedef signed short file_t;
22-
typedef long int s32_t;
23-
typedef long unsigned int u32_t;
22+
typedef int32_t s32_t;
23+
typedef uint32_t u32_t;
2424
typedef int16_t s16_t;
2525
typedef uint16_t u16_t;
2626
typedef int8_t s8_t;

0 commit comments

Comments
 (0)