diff options
author | steve <steve@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-12-04 15:45:21 +0000 |
---|---|---|
committer | steve <steve@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-12-04 15:45:21 +0000 |
commit | 3493023bce1b322762e81b43964deda94009cbef (patch) | |
tree | e39ce17e4e45e9996bc4b3619234f1d694f87687 /libao2 | |
parent | bc14bb79f1f434dd3c266d775b705a8cca5838e9 (diff) | |
download | mpv-3493023bce1b322762e81b43964deda94009cbef.tar.bz2 mpv-3493023bce1b322762e81b43964deda94009cbef.tar.xz |
LIBAO_PLUGIN_EXTERN expansion uses wrong type
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@3317 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libao2')
-rw-r--r-- | libao2/audio_plugin_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libao2/audio_plugin_internal.h b/libao2/audio_plugin_internal.h index c23f8e6f45..9c777726e4 100644 --- a/libao2/audio_plugin_internal.h +++ b/libao2/audio_plugin_internal.h @@ -5,7 +5,7 @@ static void uninit(); static void reset(); static int play(); -#define LIBAO_PLUGIN_EXTERN(x) ao_functions_t audio_plugin_##x =\ +#define LIBAO_PLUGIN_EXTERN(x) ao_plugin_functions_t audio_plugin_##x =\ {\ &info,\ control,\ |