diff options
author | Lennart Poettering <lennart@poettering.net> | 2007-07-13 23:21:54 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2007-07-13 23:21:54 +0000 |
commit | 69bfa351ba89f17b22efad95f1dc6f946cf2df20 (patch) | |
tree | bfcaa9411aacce773f331540045d33d692bff0be /src | |
parent | 3b912ac41f5406b5f7b02c718bb87cb19965843c (diff) |
Actually make the static flist static
git-svn-id: file:///home/lennart/svn/public/pulseaudio/branches/lennart@1518 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src')
-rw-r--r-- | src/pulsecore/flist.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/flist.h b/src/pulsecore/flist.h index 80fd86c1..102d30ea 100644 --- a/src/pulsecore/flist.h +++ b/src/pulsecore/flist.h @@ -41,7 +41,7 @@ int pa_flist_push(pa_flist*l, void *p); void* pa_flist_pop(pa_flist*l); #define PA_STATIC_FLIST_DECLARE(name, size) \ - struct { \ + static struct { \ pa_flist *flist; \ pa_once_t once; \ } name##_static_flist = { NULL, PA_ONCE_INIT }; \ |