Skip to content

Commit e6a3b99

Browse files
committed
Change quote style for single char in sam too
Signed-off-by: Patrick Roncagliolo <[email protected]>
1 parent 0f57225 commit e6a3b99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)