forked from bblanchon/ArduinoJson
Fixed prettyPrintTo calling printTo
This commit is contained in:
@ -25,5 +25,5 @@ size_t JsonPrintable::prettyPrintTo(IndentedPrint& p) const
|
|||||||
size_t JsonPrintable::prettyPrintTo(Print& p) const
|
size_t JsonPrintable::prettyPrintTo(Print& p) const
|
||||||
{
|
{
|
||||||
IndentedPrint indentedPrint(p);
|
IndentedPrint indentedPrint(p);
|
||||||
return printTo(indentedPrint);
|
return prettyPrintTo(indentedPrint);
|
||||||
}
|
}
|
Reference in New Issue
Block a user