fmopl: Fix typo in function name
authorStefan Weil <sw@weilnetz.de>
Tue, 7 Feb 2012 21:26:29 +0000 (22:26 +0100)
committerStefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Fri, 10 Feb 2012 10:44:52 +0000 (10:44 +0000)
Fix a typo in a local function name.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
hw/fmopl.c

index 734d2f4aae803c2d0731042963928f9f9cff6c81..f0a023477db5f9074fc822179121ded489ee55ba 100644 (file)
@@ -733,7 +733,7 @@ INLINE void CSMKeyControll(OPL_CH *CH)
 }
 
 /* ---------- opl initialize ---------- */
-static void OPL_initalize(FM_OPL *OPL)
+static void OPL_initialize(FM_OPL *OPL)
 {
        int fn;
 
@@ -1239,7 +1239,7 @@ FM_OPL *OPLCreate(int type, int clock, int rate)
        OPL->rate  = rate;
        OPL->max_ch = max_ch;
        /* init grobal tables */
-       OPL_initalize(OPL);
+       OPL_initialize(OPL);
        /* reset chip */
        OPLResetChip(OPL);
 #ifdef OPL_OUTPUT_LOG