summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrmr2025-06-24 22:58:13 -0400
committerwrmr2025-06-24 22:58:13 -0400
commitb25748bda091d2d35e5600024379b17ea81fc97f (patch)
tree08130f035a463d085781444ace60d9d04d730ff5
parent264118eb0ae7404f08e0ebfea840218d451d5aaa (diff)
%zu in tagline_set instead of %lu
-rw-r--r--main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.c b/main.c
index aaf901c..04558b7 100644
--- a/main.c
+++ b/main.c
@@ -611,7 +611,7 @@ int main(void) {
refresh:
arena_reset(&post_arena);
posts_refresh(&posts, &post_arena);
- tagline_set("%lu users, %lu posts, %lums", post_stats.user_count, post_stats.post_count,
+ tagline_set("%zu users, %zu posts, %zums", post_stats.user_count, post_stats.post_count,
post_stats.gather_ns / 1000000);
/* fallthrough */
case KEY_RESIZE: