misc. pointer formatting
This commit is contained in:
@@ -723,9 +723,9 @@ void CardReader::report_status() {
|
||||
}
|
||||
|
||||
void CardReader::write_command(char * const buf) {
|
||||
char* begin = buf;
|
||||
char* npos = nullptr;
|
||||
char* end = buf + strlen(buf) - 1;
|
||||
char *begin = buf;
|
||||
char *npos = nullptr;
|
||||
char *end = buf + strlen(buf) - 1;
|
||||
|
||||
file.writeError = false;
|
||||
if ((npos = strchr(buf, 'N'))) {
|
||||
@@ -845,7 +845,7 @@ uint16_t CardReader::countFilesInWorkDir() {
|
||||
*
|
||||
* A nullptr result indicates an unrecoverable error.
|
||||
*/
|
||||
const char* CardReader::diveToFile(const bool update_cwd, SdFile*& diveDir, const char * const path, const bool echo/*=false*/) {
|
||||
const char* CardReader::diveToFile(const bool update_cwd, SdFile* &diveDir, const char * const path, const bool echo/*=false*/) {
|
||||
// Track both parent and subfolder
|
||||
static SdFile newDir1, newDir2;
|
||||
SdFile *sub = &newDir1, *startDir;
|
||||
|
||||
Reference in New Issue
Block a user