Explorar el Código

Merge pull request #3156 from esenapaj/patch-3

Fix CardReader::lsDive()
Scott Lahteine hace 8 años
padre
commit
57e82cacc9
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/cardreader.cpp

+ 1
- 1
Marlin/cardreader.cpp Ver fichero

@@ -88,7 +88,7 @@ void CardReader::lsDive(const char *prepend, SdFile parent, const char * const m
88 88
       // close() is done automatically by destructor of SdFile
89 89
     }
90 90
     else {
91
-      char pn0 = p.name[0];
91
+      uint8_t pn0 = p.name[0];
92 92
       if (pn0 == DIR_NAME_FREE) break;
93 93
       if (pn0 == DIR_NAME_DELETED || pn0 == '.') continue;
94 94
       if (longFilename[0] == '.') continue;

Loading…
Cancelar
Guardar