Skip to content

Commit aea36ff

Browse files
authored
Merge pull request arduino#5815 from roncapat/master
Change double quotes to single quotes
2 parents d024f3d + 66798e4 commit aea36ff

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)