diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-09-03 00:21:19 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-09-03 00:21:19 +0200 |
commit | 14a97716891706d2f4984b0d1da10b354b3042db (patch) | |
tree | 7bcafe37b2e90609d05fc8ebe63b683b7f3aa7fa /src/pulsecore | |
parent | d088c8f05abfae70379d720871f59962a2b3b16b (diff) |
core: drop unnecessary variable initialization
Diffstat (limited to 'src/pulsecore')
-rw-r--r-- | src/pulsecore/sink.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pulsecore/sink.c b/src/pulsecore/sink.c index b4ecdfcc..bda92fcc 100644 --- a/src/pulsecore/sink.c +++ b/src/pulsecore/sink.c @@ -778,7 +778,7 @@ static unsigned fill_mix_info(pa_sink *s, size_t *length, pa_mix_info *info, uns /* Called from IO thread context */ static void inputs_drop(pa_sink *s, pa_mix_info *info, unsigned n, pa_memchunk *result) { pa_sink_input *i; - void *state = NULL; + void *state; unsigned p = 0; unsigned n_unreffed = 0; |