nothing happens here
This commit is contained in:
parent
e4f051a843
commit
fb133676c3
|
@ -229,10 +229,7 @@ static void removeFile(const char *pathx) {
|
||||||
f_unlink(pathx);
|
f_unlink(pathx);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int mystrncasecmp(const char *s1, const char *s2, size_t n) {
|
||||||
mystrncasecmp(const char *s1, const char *s2, size_t n)
|
|
||||||
{
|
|
||||||
|
|
||||||
if (n != 0) {
|
if (n != 0) {
|
||||||
const char *us1 = (const char *)s1;
|
const char *us1 = (const char *)s1;
|
||||||
const char *us2 = (const char *)s2;
|
const char *us2 = (const char *)s2;
|
||||||
|
@ -446,7 +443,7 @@ struct SdLogBufferWriter final : public BufferedWriter<512> {
|
||||||
FRESULT err = f_write(&FDLogFile, buffer, count, &bytesWritten);
|
FRESULT err = f_write(&FDLogFile, buffer, count, &bytesWritten);
|
||||||
|
|
||||||
if (bytesWritten != count) {
|
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
|
// Close file and unmount volume
|
||||||
mmcUnMount();
|
mmcUnMount();
|
||||||
|
|
Loading…
Reference in New Issue