Skip to content

Commit

Permalink
fix typo in hex string text writer
Browse files Browse the repository at this point in the history
  • Loading branch information
moonshadow565 committed Jan 6, 2020
1 parent f7ed0a2 commit 6707709
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/ritobin/text_write.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,6 @@ namespace ritobin {
'\\', 'x',
digits[(c >> 4) & 0x0F],
digits[c & 0x0F],
'0',
'\0'
};
write_raw(hex);
Expand Down
2 changes: 1 addition & 1 deletion src/ritobin2txt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ int main(int argc, char** argv) {
fs::path outfile = argc > 2 ? argv[2] : "";
if (argc < 3) {
outfile = infile;
outfile.replace_extension("qml");
outfile.replace_extension("py");
}

ritobin::BinUnhasher unhasher = {};
Expand Down

0 comments on commit 6707709

Please sign in to comment.