alsapid: hide the init function. Fixes #122

hexter.so has an init function with same name as the one in alsapid.so
so the hexter one was not being called and the descriptor pointer
that is returned was NULL
This commit is contained in:
Nedko Arnaudov 2010-12-01 02:55:36 +02:00
parent e8f9b6b02e
commit 0cfdeec2e7
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@ static int (* real_snd_seq_close)(snd_seq_t * handle);
//static int (* real_snd_seq_create_port)(snd_seq_t * handle, snd_seq_port_info_t * info);
//static int (* real_snd_seq_create_simple_port)(snd_seq_t * seq, const char * name, unsigned int caps, unsigned int type);
void __attribute__ ((constructor)) init(void);
static void __attribute__ ((constructor)) init(void);
/* Library constructor */
void init(void)