Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libraries/Update/src/Update.h
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class UpdateClass {
/*
Prints the last error to an output stream
*/
void printError(Stream &out);
void printError(Print &out);

const char * errorString();

Expand Down
2 changes: 1 addition & 1 deletion libraries/Update/src/Updater.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ size_t UpdateClass::writeStream(Stream &data) {
return written;
}

void UpdateClass::printError(Stream &out){
void UpdateClass::printError(Print &out){
out.println(_err2str(_error));
}

Expand Down