mirror of
https://github.com/janet-lang/janet
synced 2024-12-28 09:20:26 +00:00
Fix build issues on windows by using a size_t instead of int.
This commit is contained in:
parent
2dc04d2957
commit
8f00848c7b
@ -560,7 +560,7 @@ struct JanetListenerState {
|
|||||||
int bytes; /* Used to track how many bytes were transfered. */
|
int bytes; /* Used to track how many bytes were transfered. */
|
||||||
#endif
|
#endif
|
||||||
/* internal */
|
/* internal */
|
||||||
int _index; /* not used in all implementations */
|
size_t _index;
|
||||||
int _mask;
|
int _mask;
|
||||||
JanetListenerState *_next;
|
JanetListenerState *_next;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user