Skip to content

Commit 2f33d08

Browse files
committed
Provide integer sleep time
Since it doesn't support float values anyway: https://linux.die.net/man/3/sleep
1 parent f756560 commit 2f33d08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/test_continuous.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ START_TEST (continuous_constructor_test) {
7272
END_TEST
7373

7474
void * pico_main(void * thread_data) {
75-
sleep(0.5);
75+
sleep(1);
7676
PicoThreadData * data = (PicoThreadData*) thread_data;
7777
int timeout;
7878

0 commit comments

Comments
 (0)