diff options
author | Martino Facchin <m.facchin@arduino.cc> | 2017-01-09 10:43:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-09 10:43:59 +0100 |
commit | af7655dfccfbd9001997ca6400d365f5493fc96c (patch) | |
tree | 51a1c8a64032d63b589940b9422a8d5c50620f2d | |
parent | a4227cf02c5297adc02b49c9e796c9c3b3681c61 (diff) | |
parent | 5cd4e8c3999aca48ed51b82e7c5c21392d80ab2f (diff) |
Merge pull request #5815 from roncapat/master
Change double quotes to single quotes
-rw-r--r-- | cores/arduino/Print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/Print.cpp b/cores/arduino/Print.cpp index 652fed0..1e4c99a 100644 --- a/cores/arduino/Print.cpp +++ b/cores/arduino/Print.cpp @@ -250,7 +250,7 @@ size_t Print::printFloat(double number, uint8_t digits) // Print the decimal point, but only if there are digits beyond if (digits > 0) { - n += print("."); + n += print('.'); } // Extract digits from the remainder one at a time |