[MPlayer-dev-eng] Spellchecking

Joey Parrish joey at nicewarrior.org
Fri Aug 15 18:04:01 CEST 2003


On Thu, Aug 14, 2003 at 07:20:16PM +0200, Diego Biurrun wrote:
> > To start with, this really drives me crazy.
> > libmpcodecs/ad_realaud.c:
> > load_sysm_windows -> load_syms_windows
> Send a patch..

Attached.  If it is best to wait and commit this later with all the
other spell checks, feel free.

--Joey
-------------- next part --------------
Index: libmpcodecs/ad_realaud.c
===================================================================
RCS file: /cvsroot/mplayer/main/libmpcodecs/ad_realaud.c,v
retrieving revision 1.27
diff -u -r1.27 ad_realaud.c
--- libmpcodecs/ad_realaud.c	19 Jul 2003 22:05:16 -0000	1.27
+++ libmpcodecs/ad_realaud.c	15 Aug 2003 16:14:50 -0000
@@ -162,7 +162,7 @@
 void* WINAPI GetProcAddress(void* handle,char *func);
 int WINAPI FreeLibrary(void *handle);
 
-static int load_sysm_windows(char *path)
+static int load_syms_windows(char *path)
 {
     void *handle;
     
@@ -223,7 +223,7 @@
     if (strstr(sh->codec->dll,".dll") || !load_syms_linux(path))
 #endif
 #ifdef USE_WIN32DLL
-	if (!load_sysm_windows(sh->codec->dll))
+	if (!load_syms_windows(sh->codec->dll))
 #endif
     {
 	mp_msg(MSGT_DECVIDEO, MSGL_ERR, MSGTR_MissingDLLcodec, sh->codec->dll);


More information about the MPlayer-dev-eng mailing list