diff options
| author | John Keeping <[email protected]> | 2019-12-10 16:09:54 +0000 |
|---|---|---|
| committer | Marcel Holtmann <[email protected]> | 2019-12-10 17:44:34 +0100 |
| commit | 8c31f87f40d4cfb2cba122ba89ada3062a2e4b49 (patch) | |
| tree | f9b5775107a75f8d6757785783f145af6f04637a | |
| parent | 878912e12ae9864c7b9aca2a61d782f8e1044ffe (diff) | |
sbc: Fix visibility of sbc_reinit_a2dp()
sbc_reinit_a2dp() is missing the SBC_EXPORT attribute so it's not
visibile to be used by consumers of the shared object.
| -rw-r--r-- | sbc/sbc.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1191,7 +1191,7 @@ SBC_EXPORT int sbc_init_a2dp(sbc_t *sbc, unsigned long flags, return 0; } -int sbc_reinit_a2dp(sbc_t *sbc, unsigned long flags, +SBC_EXPORT int sbc_reinit_a2dp(sbc_t *sbc, unsigned long flags, const void *conf, size_t conf_len) { int err; |
