aboutsummaryrefslogtreecommitdiff
path: root/sizeof.c
diff options
context:
space:
mode:
authordam <dam@gudinoff>2023-04-04 22:51:28 +0100
committerdam <dam@gudinoff>2023-04-04 22:51:28 +0100
commit27fc71a32cc474d7e657d2731e2f2308c9a4d8e3 (patch)
tree073c62053515176ebeb420ac5ea4ae722f7d3c40 /sizeof.c
parent98a21ce9edcd22bf7a9dde62f317f143e289ecf5 (diff)
downloadtask-time-tracker-27fc71a32cc474d7e657d2731e2f2308c9a4d8e3.tar.zst
task-time-tracker-27fc71a32cc474d7e657d2731e2f2308c9a4d8e3.zip
Fixed KEY_* values which were octal but I assumed decimals.
Diffstat (limited to 'sizeof.c')
-rw-r--r--sizeof.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sizeof.c b/sizeof.c
index 4844cba..9025f78 100644
--- a/sizeof.c
+++ b/sizeof.c
@@ -31,6 +31,8 @@ int main(int argc, char **argv) {
memset(str, 0, 64);
sprintf(str, "x,y : %dx%d\n", w_size_x, w_size_y);
mvaddstr(2, 2, str);
+ sprintf(str, "resize:%d\n", KEY_RESIZE);
+ mvaddstr(3, 2, str);
unsigned m = ACS_DIAMOND;
fprintf(stderr, "sizeof ACS %d\n", sizeof(ACS_DIAMOND));