Fix CardReader string args

This commit is contained in:
Scott Lahteine
2021-04-02 14:30:13 -05:00
parent 9165749321
commit 98d6c751d3
2 changed files with 6 additions and 6 deletions

View File

@@ -91,8 +91,8 @@ public:
static void manage_media();
// SD Card Logging
static void openLogFile(char * const path);
static void write_command(char * const buf);
static void openLogFile(const char * const path);
static void write_command(const char * const buf);
#if DISABLED(NO_SD_AUTOSTART) // Auto-Start auto#.g file handling
static uint8_t autofile_index; // Next auto#.g index to run, plus one. Ignored by autofile_check when zero.
@@ -103,7 +103,7 @@ public:
// Basic file ops
static void openFileRead(char * const path, const uint8_t subcall=0);
static void openFileWrite(char * const path);
static void openFileWrite(const char * const path);
static void closefile(const bool store_location=false);
static bool fileExists(const char * const name);
static void removeFile(const char * const name);