diff options
author | wrmr | 2025-06-24 22:58:13 -0400 |
---|---|---|
committer | wrmr | 2025-06-24 22:58:13 -0400 |
commit | b25748bda091d2d35e5600024379b17ea81fc97f (patch) | |
tree | 08130f035a463d085781444ace60d9d04d730ff5 | |
parent | 264118eb0ae7404f08e0ebfea840218d451d5aaa (diff) |
%zu in tagline_set instead of %lu
-rw-r--r-- | main.c | 2 |
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: |