Skip to content

Commit 750849f

Browse files
committed
QSPIFormat: style fixes
1 parent 9a837b8 commit 750849f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/STM32H747_System/examples/QSPIFormat/QSPIFormat.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ void setup() {
9696
// use space from 15.5MB to 16 MB for another fw, memory mapped
9797

9898
bool reformat = true;
99-
if(!wifi_data_fs.mount(&wifi_data)) {
99+
if (!wifi_data_fs.mount(&wifi_data)) {
100100
Serial.println("\nPartition 1 already contains a filesystem, do you want to reformat it? Y/[n]");
101101
wifi_data_fs.unmount();
102102

@@ -119,7 +119,7 @@ void setup() {
119119
}
120120

121121
reformat = true;
122-
if(!ota_data_fs.mount(&ota_data)) {
122+
if (!ota_data_fs.mount(&ota_data)) {
123123
Serial.println("\nPartition 2 already contains a filesystem, do you want to reformat it? Y/[n]");
124124
ota_data_fs.unmount();
125125

@@ -143,7 +143,7 @@ void setup() {
143143
}
144144

145145
reformat = true;
146-
if(!user_data_fs->mount(&user_data)) {
146+
if (!user_data_fs->mount(&user_data)) {
147147
Serial.println("\nPartition 4 already contains a filesystem, do you want to reformat it? Y/[n]");
148148
user_data_fs->unmount();
149149

0 commit comments

Comments
 (0)