1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-28 04:38:00 +00:00

Alarm timer requires an unsigned timeout value in timer.c, timeout.h

This commit is contained in:
Nick Briggs
2022-08-14 12:50:16 -07:00
parent c49eb4a4ce
commit ad045ce356
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ extern DspInterface currentdsp;
* to get Alto time.
*/
int TIMEOUT_TIME = 10; /* For file system timeout, seconds, default 10 */
unsigned int TIMEOUT_TIME = 10; /* For file system timeout, seconds, default 10 */
volatile sig_atomic_t IO_Signalled = FALSE;