Skip to content

Commit 2ce00cd

Browse files
committed
Fix compiler warnings
1 parent df9c8b6 commit 2ce00cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

extras/tests/TestFolderOperations/TestFolderOperations.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ void setup(){
171171
#endif
172172

173173
#if defined(HAS_SD)
174-
runTests(&&sd, "SD");
174+
runTests(&sd, "SD");
175175
#endif
176176

177177
}

src/Partitioning.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
constexpr int mbrBlockSize = 4096;
88
constexpr int mbrPartitionType = 0x0B;
9-
constexpr char * mountPointName = "mountPoint";
9+
constexpr const char * mountPointName = "mountPoint";
1010
constexpr int maximumMBRPartitions = 4;
1111
constexpr int emptyPartitionType = 0x00;
1212
constexpr uint8_t mbrMagicNumbers[] = {0x55, 0xAA};

0 commit comments

Comments
 (0)