diff options
author | Stefan Weil | 2012-02-07 22:26:29 +0100 |
---|---|---|
committer | Stefan Hajnoczi | 2012-02-10 11:44:52 +0100 |
commit | 31de83140d23ccc0e290bc0de609ba2b1aff674a (patch) | |
tree | 108fd2dbc9e677a09c0607bd7f4cd8da55a69d11 /hw/fmopl.c | |
parent | vl.c: Fix typo in variable name (diff) | |
download | qemu-31de83140d23ccc0e290bc0de609ba2b1aff674a.tar.gz qemu-31de83140d23ccc0e290bc0de609ba2b1aff674a.tar.xz qemu-31de83140d23ccc0e290bc0de609ba2b1aff674a.zip |
fmopl: Fix typo in function name
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>
Diffstat (limited to 'hw/fmopl.c')
-rw-r--r-- | hw/fmopl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/fmopl.c b/hw/fmopl.c index 734d2f4aae..f0a023477d 100644 --- a/hw/fmopl.c +++ b/hw/fmopl.c @@ -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 |