diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/example.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/example.c b/src/example.c index f8d4ba8..ad396d4 100644 --- a/src/example.c +++ b/src/example.c @@ -32,7 +32,7 @@ THUNK_DEFINE(foo, pulp_t *, p, int, w, int, h) for (int x = 0; x < w; x++) (void) pulp_fiber_new(p, (w - x), THUNK(bar(x))); - pulp_msleep(p, w + 1); + pulp_msleep(p, w + 1, NULL); } return 0; |