the mixer module was completly inconsistent formated!

-> used "astyle -s3" to format it
-> NO CODE CHANGES!


SVN revision: 40148
This commit is contained in:
Andreas Volz 2009-04-17 20:13:17 +00:00
parent 621f39f329
commit c88ec0590b
8 changed files with 808 additions and 808 deletions

View File

@ -800,9 +800,9 @@ _mixer_sys_setup_default_card(E_Mixer_Instance *inst)
return 1; return 1;
system_error: system_error:
eina_stringshare_del(card); eina_stringshare_del(card);
error: error:
conf->card = NULL; conf->card = NULL;
return 0; return 0;
} }
@ -828,9 +828,9 @@ _mixer_sys_setup_default_channel(E_Mixer_Instance *inst)
conf->channel_name = channel_name; conf->channel_name = channel_name;
return 1; return 1;
system_error: system_error:
eina_stringshare_del(channel_name); eina_stringshare_del(channel_name);
error: error:
conf->channel_name = NULL; conf->channel_name = NULL;
return 0; return 0;
} }

View File

@ -162,9 +162,9 @@ e_mixer_system_new(const char *name)
return handle; return handle;
error_load: error_load:
snd_mixer_close(handle); snd_mixer_close(handle);
error_open: error_open:
fprintf(stderr, "MIXER: Cannot get hardware info: %s\n", snd_strerror(err)); fprintf(stderr, "MIXER: Cannot get hardware info: %s\n", snd_strerror(err));
return NULL; return NULL;
} }