nothing happens here

This commit is contained in:
rusefillc 2021-04-13 23:29:39 -04:00
parent e4f051a843
commit fb133676c3
1 changed files with 2 additions and 5 deletions

View File

@ -229,10 +229,7 @@ static void removeFile(const char *pathx) {
f_unlink(pathx);
}
int
mystrncasecmp(const char *s1, const char *s2, size_t n)
{
int mystrncasecmp(const char *s1, const char *s2, size_t n) {
if (n != 0) {
const char *us1 = (const char *)s1;
const char *us2 = (const char *)s2;
@ -446,7 +443,7 @@ struct SdLogBufferWriter final : public BufferedWriter<512> {
FRESULT err = f_write(&FDLogFile, buffer, count, &bytesWritten);
if (bytesWritten != count) {
printError("write error or disk full", err); // error or disk full
printError("write error or disk full", err);
// Close file and unmount volume
mmcUnMount();