E: Mixer: Fix some 'variable may be used uninitialized' warnings.

SVN revision: 64301
This commit is contained in:
Christopher Michael 2011-10-22 17:08:08 +00:00
parent 9d92d60572
commit dfe911f764
2 changed files with 2 additions and 2 deletions

View File

@ -574,7 +574,7 @@ pulse_new(void)
{
Pulse *conn;
Eina_Iterator *it;
const char *dir, *prev, *buf = NULL;;
const char *dir, *prev = NULL, *buf = NULL;;
time_t time = 0;
char *home, h[4096];

View File

@ -23,7 +23,7 @@ deserialize_sinks_watcher(Pulse *conn, Pulse_Tag *tag)
Pulse_Sink *
deserialize_sink(Pulse *conn __UNUSED__, Pulse_Tag *tag)
{
Pulse_Sink *sink;
Pulse_Sink *sink = NULL;
Eina_Bool mute, exist;
pa_sample_spec spec;
uint32_t owner_module, monitor_source, flags, base_volume, state, n_volume_steps, card, n_ports;