From 96a759de13d55e94f03169f94a18db8015a09ca1 Mon Sep 17 00:00:00 2001 From: Sandeep Mistry <s.mistry@arduino.cc> Date: Tue, 5 Apr 2016 09:37:11 -0400 Subject: [PATCH] Correct prog_int64_t and prog_uint64_t typedefs --- cores/arduino/avr/pgmspace.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cores/arduino/avr/pgmspace.h b/cores/arduino/avr/pgmspace.h index 68ff4971..d1599f9f 100644 --- a/cores/arduino/avr/pgmspace.h +++ b/cores/arduino/avr/pgmspace.h @@ -44,8 +44,8 @@ typedef int16_t prog_int16_t; typedef uint16_t prog_uint16_t; typedef int32_t prog_int32_t; typedef uint32_t prog_uint32_t; -typedef int32_t prog_int64_t; -typedef uint32_t prog_uint64_t; +typedef int64_t prog_int64_t; +typedef uint64_t prog_uint64_t; typedef const void* int_farptr_t; typedef const void* uint_farptr_t; -- GitLab