File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
ArduinoCore-Linux/libraries Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ class File : public Stream {
112112 return readBytes ((char *)buffer, length);
113113 }
114114
115- size_t readBytes (char *buffer, size_t length) override {
115+ size_t readBytes (char *buffer, size_t length) {
116116 file.read (buffer, length);
117117 return static_cast <size_t >(file.gcount ());
118118 }
Original file line number Diff line number Diff line change @@ -116,7 +116,7 @@ class SdFile : public Stream {
116116 return !isOpen ();
117117 }
118118
119- size_t readBytes (uint8_t *buffer, size_t length) override {
119+ size_t readBytes (uint8_t *buffer, size_t length) {
120120 return file.readsome ((char *)buffer, length);
121121 }
122122 size_t write (const uint8_t *buffer, size_t size) override {
You can’t perform that action at this time.
0 commit comments