Skip to content

Commit 96a759d

Browse files
committed
Correct prog_int64_t and prog_uint64_t typedefs
1 parent df98257 commit 96a759d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cores/arduino/avr/pgmspace.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ typedef int16_t prog_int16_t;
4444
typedef uint16_t prog_uint16_t;
4545
typedef int32_t prog_int32_t;
4646
typedef uint32_t prog_uint32_t;
47-
typedef int32_t prog_int64_t;
48-
typedef uint32_t prog_uint64_t;
47+
typedef int64_t prog_int64_t;
48+
typedef uint64_t prog_uint64_t;
4949

5050
typedef const void* int_farptr_t;
5151
typedef const void* uint_farptr_t;

0 commit comments

Comments
 (0)