diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-09 23:55:57 +0100 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-02-09 23:55:57 +0100 |
| commit | 5b47adb57b11acb2318053d710d075d37f669f76 (patch) | |
| tree | 14d9d8cd0eae4308dbb3b5f6b92fbb50b6a3abbd /core/tctl.c | |
| parent | c0570cab3854b4990a77cc9fbbbb145443231718 (diff) | |
change tctl output format
Diffstat (limited to 'core/tctl.c')
| -rw-r--r-- | core/tctl.c | 2 |
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(); |