Skip to content

Commit b77957e

Browse files
authored
Merge pull request #5815 from roncapat/master
Change double quotes to single quotes
2 parents 8418eec + e6a3b99 commit b77957e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

hardware/arduino/avr/cores/arduino/Print.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ size_t Print::printFloat(double number, uint8_t digits)
250250

251251
// Print the decimal point, but only if there are digits beyond
252252
if (digits > 0) {
253-
n += print(".");
253+
n += print('.');
254254
}
255255

256256
// Extract digits from the remainder one at a time

hardware/arduino/sam/cores/arduino/Print.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ size_t Print::printFloat(double number, uint8_t digits)
242242

243243
// Print the decimal point, but only if there are digits beyond
244244
if (digits > 0) {
245-
n += print(".");
245+
n += print('.');
246246
}
247247

248248
// Extract digits from the remainder one at a time

0 commit comments

Comments
 (0)