Skip to content

Commit 373bff3

Browse files
authored
Merge pull request #5815 from roncapat/master
Change double quotes to single quotes
2 parents d7c4c12 + 1da7b0c commit 373bff3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
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

0 commit comments

Comments
 (0)