reverse order of printf and push to make output more readable

git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1539 fefdeb5f-60dc-0310-8127-8f9354f1896f
This commit is contained in:
Lennart Poettering 2007-07-26 13:15:58 +00:00
parent bc3693261f
commit 8cdde282e8

View file

@ -40,8 +40,8 @@ static void producer(void *_q) {
int i;
for (i = 0; i < 1000; i++) {
printf("pushing %i\n", i);
pa_asyncq_push(q, (void*) (i+1), 1);
printf("pushed %i\n", i);
}
pa_asyncq_push(q, (void*) -1, 1);