Replace all remaining 'boolean' with 'bool'

This commit is contained in:
AnHardt
2017-01-13 13:03:52 +01:00
parent f6858d9974
commit fa26767efe
3 changed files with 5 additions and 5 deletions

View File

@ -81,7 +81,7 @@ void CardReader::lsDive(const char *prepend, SdFile parent, const char * const m
createFilename(lfilename, p);
// Allocate enough stack space for the full path to a folder, trailing slash, and nul
boolean prepend_is_empty = (prepend[0] == '\0');
bool prepend_is_empty = (prepend[0] == '\0');
int len = (prepend_is_empty ? 1 : strlen(prepend)) + strlen(lfilename) + 1 + 1;
char path[len];