aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorNathan Reiner <nathan@nathanreiner.xyz>2023-02-09 23:55:57 +0100
committerNathan Reiner <nathan@nathanreiner.xyz>2023-02-09 23:55:57 +0100
commit5b47adb57b11acb2318053d710d075d37f669f76 (patch)
tree14d9d8cd0eae4308dbb3b5f6b92fbb50b6a3abbd /core
parentc0570cab3854b4990a77cc9fbbbb145443231718 (diff)
change tctl output format
Diffstat (limited to 'core')
-rw-r--r--core/tctl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/tctl.c b/core/tctl.c
index e57c7cd..bf4f7fc 100644
--- a/core/tctl.c
+++ b/core/tctl.c
@@ -28,7 +28,7 @@ int main(int argc, const char **argv)
if (size.width == 0 && size.height == 0) {
size = tctl_get_window_size();
- wstdf("width: %u, height: %u\n", size.width, size.height);
+ wstdf("%ux%u\n", size.width, size.height);
} else {
window_size_t new_size = tctl_get_window_size();