diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-01-01 14:54:19 +0100 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2022-01-01 14:54:19 +0100 |
commit | 8a45fcfcacd3752b19ff59542f74066a8d6d14ce (patch) | |
tree | 537877a67239a8ca8cedca3e11783e9137eb8db4 /api/int.c | |
parent | 8a3ed3c5996e8a88d94c24daa091dcd11fd81fac (diff) | |
download | uwu-lang-8a45fcfcacd3752b19ff59542f74066a8d6d14ce.tar.xz |
Fix int to string conversion format
Diffstat (limited to 'api/int.c')
-rw-r--r-- | api/int.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ void *uwuint_clone(void *data) char *uwuint_print(void *data) { - return asprintf_wrapper("%l", *(long *) data); + return asprintf_wrapper("%ld", *(long *) data); } UwUVMType uwuint_type = { |