diff options
author | saturneric <[email protected]> | 2025-04-19 02:31:07 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-04-19 02:31:07 +0000 |
commit | e348231f935e925c3ea2d7077ca7abefd106dac0 (patch) | |
tree | 88fdcfdb7e2bdc69dc39a39bfb1571d17ef2ee62 /src/m_paper_key | |
parent | fix: crash due to memory bad access (diff) | |
download | Modules-e348231f935e925c3ea2d7077ca7abefd106dac0.tar.gz Modules-e348231f935e925c3ea2d7077ca7abefd106dac0.zip |
Diffstat (limited to 'src/m_paper_key')
-rw-r--r-- | src/m_paper_key/parse.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/m_paper_key/parse.cpp b/src/m_paper_key/parse.cpp index 1fe130e..a8e6938 100644 --- a/src/m_paper_key/parse.cpp +++ b/src/m_paper_key/parse.cpp @@ -314,8 +314,7 @@ struct packet *read_secrets_file(FILE *secrets, enum data_type input_type) { linenum = atoi(line); if (linenum != next_linenum) { - FLOG_ERROR("missing line number %u (saw %u)", next_linenum, - linenum); + FLOG_ERROR("missing line number %u (saw %u)", next_linenum, linenum); free_packet(packet); return NULL; } else |