1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-25 22:53:16 +00:00

Fix build issues on windows by using a size_t instead of int.

This commit is contained in:
Calvin Rose 2020-11-18 19:31:20 -06:00
parent 2dc04d2957
commit 8f00848c7b

View File

@ -560,7 +560,7 @@ struct JanetListenerState {
int bytes; /* Used to track how many bytes were transfered. */
#endif
/* internal */
int _index; /* not used in all implementations */
size_t _index;
int _mask;
JanetListenerState *_next;
};