diff options
author | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-02-14 22:32:41 +0000 |
---|---|---|
committer | Daniel Caujolle-Bert <f1rmb@users.sourceforge.net> | 2003-02-14 22:32:41 +0000 |
commit | 7d3c78fcd4e7792079f0183c0405ba263f8ec3d1 (patch) | |
tree | e1660ec6eb730bf53f71c4d5e0ca002491334f90 | |
parent | d21d7276898ba8e422c3b3dca294e01d34753211 (diff) | |
download | xine-lib-7d3c78fcd4e7792079f0183c0405ba263f8ec3d1.tar.gz xine-lib-7d3c78fcd4e7792079f0183c0405ba263f8ec3d1.tar.bz2 |
wrong returned pointer type
CVS patchset: 4164
CVS date: 2003/02/14 22:32:41
-rw-r--r-- | src/audio_out/audio_esd_out.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_out/audio_esd_out.c b/src/audio_out/audio_esd_out.c index 0329ba5c9..34f7b985a 100644 --- a/src/audio_out/audio_esd_out.c +++ b/src/audio_out/audio_esd_out.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: audio_esd_out.c,v 1.25 2002/12/27 17:49:17 jkeil Exp $ + * $Id: audio_esd_out.c,v 1.26 2003/02/14 22:32:41 f1rmb Exp $ */ #ifdef HAVE_CONFIG_H @@ -545,7 +545,7 @@ static ao_driver_t *open_plugin (audio_driver_class_t *class_gen, this->ao_driver.exit = ao_esd_exit; this->ao_driver.control = ao_esd_ctrl; - return this; + return &(this->ao_driver); } /* |