mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
Fix some unused parameter warnings.
git-svn-id: svn://localhost/ardour2/branches/3.0@5403 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
f411496289
commit
b65f8073ba
195 changed files with 574 additions and 518 deletions
|
|
@ -379,6 +379,8 @@ expected_message_length(unsigned char status, const unsigned char *second_byte,
|
|||
static int
|
||||
extract_sysex_event(const unsigned char *buf, const size_t buffer_length, smf_event_t *event, uint32_t *len, int last_status)
|
||||
{
|
||||
(void) last_status;
|
||||
|
||||
int status;
|
||||
int32_t vlq_length, message_length;
|
||||
const unsigned char *c = buf;
|
||||
|
|
@ -419,6 +421,8 @@ extract_sysex_event(const unsigned char *buf, const size_t buffer_length, smf_ev
|
|||
static int
|
||||
extract_escaped_event(const unsigned char *buf, const size_t buffer_length, smf_event_t *event, uint32_t *len, int last_status)
|
||||
{
|
||||
(void) last_status;
|
||||
|
||||
int status;
|
||||
int32_t message_length, vlq_length;
|
||||
const unsigned char *c = buf;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue