Silence warnings

This commit is contained in:
negativeExponent
2020-02-16 23:14:49 +08:00
parent 1eaed36344
commit a37314c4be
3 changed files with 5 additions and 5 deletions

View File

@@ -555,10 +555,10 @@ static void maketables(uint32 c, uint32 r) {
}
}
OPLL *OPLL_new(uint32 clk, uint32 rate) {
OPLL *OPLL_new(uint32 _clk, uint32 _rate) {
OPLL *opll;
maketables(clk, rate);
maketables(_clk, _rate);
opll = (OPLL*)calloc(sizeof(OPLL), 1);
if (opll == NULL)