summaryrefslogtreecommitdiffstats
path: root/src/tests/asyncq-test.c
diff options
context:
space:
mode:
authorMaarten Bosmans <mkbosmans@gmail.com>2011-02-17 11:50:10 +0100
committerMaarten Bosmans <mkbosmans@gmail.com>2011-02-17 12:02:31 +0100
commitaebf66bef6ebc8561b3cd4bfb4189ea739056f65 (patch)
tree7d07d4c821a62aada8ce98adc99881ed0662d9a9 /src/tests/asyncq-test.c
parentf2a9fd779e6bfc79d7e6f6f45447e9adbb873c34 (diff)
Use pa_* instead of generic functions to improve portability
Diffstat (limited to 'src/tests/asyncq-test.c')
-rw-r--r--src/tests/asyncq-test.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/asyncq-test.c b/src/tests/asyncq-test.c
index 538bbb17..eae8cce9 100644
--- a/src/tests/asyncq-test.c
+++ b/src/tests/asyncq-test.c
@@ -51,7 +51,7 @@ static void consumer(void *_q) {
void *p;
int i;
- sleep(1);
+ pa_msleep(1000);
for (i = 0;; i++) {
p = pa_asyncq_pop(q, TRUE);