# HG changeset patch # User Matti Hamalainen # Date 1530475653 -10800 # Node ID 7190f4fbc0ddaa679de094c362f631daa90758f2 # Parent 924a1188f69716c7c78a408f79733cdaef9246e4 Silence some unused function argument warnings. diff -r 924a1188f697 -r 7190f4fbc0dd src/dmtimeline.c --- a/src/dmtimeline.c Sun Jul 01 22:25:00 2018 +0300 +++ b/src/dmtimeline.c Sun Jul 01 23:07:33 2018 +0300 @@ -365,11 +365,16 @@ */ int dmAddSplitPreparedEventGroup(DMPreparedEventGroup **groups, DMTimelineTrack *track, DMTimelineEvent *event) { + (void) groups; + (void) track; + (void) event; + +/* DMPreparedEventGroup *node; - for (node = *groups; node != NULL; node = node->next) { } +*/ return DMERR_OK; } @@ -418,6 +423,9 @@ */ int dmSeekTimeline(DMPreparedTimeline *tl, int time) { + (void) tl; + (void) time; + return DMERR_OK; } @@ -426,5 +434,9 @@ */ int dmExecuteTimeline(DMPreparedTimeline *tl, DMEngineData *engine, int time) { + (void) tl; + (void) engine; + (void) time; + return DMERR_OK; }