change boolean to bool

more information: https://github.com/arduino/Arduino/issues/4673
This commit is contained in:
Rotzbua
2018-01-13 11:29:53 +01:00
parent 3ef2f1a2f8
commit 98c43cde8f
5 changed files with 11 additions and 10 deletions

View File

@@ -75,9 +75,9 @@ void dump_byte_array(byte *buffer, byte bufferSize) {
*
* @return true when the given key worked, false otherwise.
*/
boolean try_key(MFRC522::MIFARE_Key *key)
bool try_key(MFRC522::MIFARE_Key *key)
{
boolean result = false;
bool result = false;
byte buffer[18];
byte block = 0;
MFRC522::StatusCode status;