refactor: remove long

long is 32-bits even on 64-bit windows which makes the type suboptimal
for a codebase meant to be cross-platform.
This commit is contained in:
dundargoc
2023-04-17 22:18:58 +02:00
parent f771d62471
commit fcf3519c65
32 changed files with 234 additions and 237 deletions

View File

@@ -30,7 +30,7 @@ typedef struct {
bool save_msg_didout;
int save_State;
bool save_finish_op;
long save_opcount;
int save_opcount;
int save_reg_executing;
bool save_pending_end_reg_executing;
tasave_T tabuf;