From 184ae153288d16c2537fd27e8746493412d5747d Mon Sep 17 00:00:00 2001 From: per1234 Date: Thu, 10 Aug 2017 20:12:10 -0700 Subject: [PATCH] Correct capitalization of Arduino.h include filename The correct filename is Arduino.h. Incorrect capitalization is not an issue on filename case insensitive operating systems such as Windows but on filename case sensitive operating systems such as Linux the previous incorrect filename will cause compilation to fail. --- Sha/sha1_config.h | 2 +- Sha/sha256_config.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Sha/sha1_config.h b/Sha/sha1_config.h index 9797243..a087685 100644 --- a/Sha/sha1_config.h +++ b/Sha/sha1_config.h @@ -10,7 +10,7 @@ #include #include #else - #include "arduino.h" + #include "Arduino.h" #endif #if (defined(__linux) || defined(linux)) || defined(__ARDUINO_X86__) diff --git a/Sha/sha256_config.h b/Sha/sha256_config.h index 994e123..71c9537 100644 --- a/Sha/sha256_config.h +++ b/Sha/sha256_config.h @@ -11,7 +11,7 @@ #include #include #else - #include "arduino.h" + #include "Arduino.h" #endif #if (defined(__linux) || defined(linux)) || defined(__ARDUINO_X86__)