aboutsummaryrefslogtreecommitdiffstats
path: root/src/m_paper_key
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-04-19 02:31:07 +0000
committersaturneric <[email protected]>2025-04-19 02:31:07 +0000
commite348231f935e925c3ea2d7077ca7abefd106dac0 (patch)
tree88fdcfdb7e2bdc69dc39a39bfb1571d17ef2ee62 /src/m_paper_key
parentfix: crash due to memory bad access (diff)
downloadModules-main.tar.gz
Modules-main.zip
chore: upgrade to v2.1.8HEADmain
Diffstat (limited to 'src/m_paper_key')
-rw-r--r--src/m_paper_key/parse.cpp3
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