Skip to content
Snippets Groups Projects
Commit 20ec6bfe authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Fix the messages per second statistic displayed to user

.. when packing a QWK packet (on Win32, was always reported 0 messages per second).
parent 41b9d304
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -575,7 +575,7 @@ bool sbbs_t::pack_qwk(char *packet, ulong *msgcnt, bool prepack)
"(%lu messages/second)."
,(*msgcnt)+mailmsgs
,ftell(qwk)
,elapsed
,(ulong)elapsed
,((*msgcnt)+mailmsgs) / elapsed);
lprintf(LOG_INFO, "packed %lu messages (%lu bytes) in %lu seconds (%lu msgs/sec)"
,(*msgcnt)+mailmsgs
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment