Skip to content

Commit

Permalink
antpm: tidy up
Browse files Browse the repository at this point in the history
  • Loading branch information
Kristof Ralovich committed Aug 2, 2023
1 parent 7bff454 commit b891ca6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/AntMessage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,7 @@ AntFsFile::saveToFile(const char* fileName /* = "antfs.bin" */)
}

bool
GFile::saveToFile(const char* fileName /* = "antfs.bin" */)
GFile::saveToFile(const char* fileName)
{
logger() << "Saving '" << fileName << "'...\n";
if(bytes.empty()) { LOG(LOG_ERR) << "nothing to save\n"; return false; }
Expand Down
2 changes: 1 addition & 1 deletion src/AntMessage.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -437,7 +437,7 @@ struct AntFsFile
struct GFile
{
std::vector<uchar> bytes;
bool saveToFile(const char* fileName = "antfs.bin");
bool saveToFile(const char* fileName);
};

}

0 comments on commit b891ca6

Please sign in to comment.