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

@@ -93,9 +93,9 @@ void dump_byte_array1(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;
for(byte block = 0; block < 64; block++){