diff options
author | Vitaly Novichkov <admin@wohlnet.ru> | 2018-06-18 01:44:19 +0300 |
---|---|---|
committer | Vitaly Novichkov <admin@wohlnet.ru> | 2018-06-18 01:44:19 +0300 |
commit | 91cf4f995994af1f16ebc8c5f0a7a1b40d3e0870 (patch) | |
tree | 8c26eda29250341b546aab66dc400557563f09c2 /include | |
parent | 10ebfc3b78b41426daedaad9beedb6043bc09c51 (diff) | |
download | libADLMIDI-91cf4f995994af1f16ebc8c5f0a7a1b40d3e0870.tar.gz libADLMIDI-91cf4f995994af1f16ebc8c5f0a7a1b40d3e0870.tar.bz2 libADLMIDI-91cf4f995994af1f16ebc8c5f0a7a1b40d3e0870.zip |
Fixed C90 warning in the public header
Diffstat (limited to 'include')
-rw-r--r-- | include/adlmidi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/adlmidi.h b/include/adlmidi.h index 347f4b4..c64f55c 100644 --- a/include/adlmidi.h +++ b/include/adlmidi.h @@ -149,7 +149,7 @@ extern int adl_getNextBank(struct ADL_MIDIPlayer *device, ADL_Bank *bank); extern int adl_getInstrument(struct ADL_MIDIPlayer *device, const ADL_Bank *bank, unsigned index, ADL_Instrument *ins); /* Sets the nth intrument in the bank [0..127]. */ extern int adl_setInstrument(struct ADL_MIDIPlayer *device, ADL_Bank *bank, unsigned index, const ADL_Instrument *ins); -#endif // defined(ADLMIDI_UNSTABLE_API) +#endif /* defined(ADLMIDI_UNSTABLE_API) */ /*Sets number of 4-operator channels between all chips. By default, it is automatically re-calculating every bank change. |