Although the getter of byte param has argument of guint32 type, the
argument should be guint8 type.
Fixes: a272b5d0e727: ("seq: event_data_queue: add accessor methods")
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
* Set eight quadlets as param of the queue event.
*/
void alsaseq_event_data_queue_set_byte_param(ALSASeqEventDataQueue *self,
- const guint32 bytes[8])
+ const guint8 bytes[8])
{
memcpy(self->param.d8, bytes, sizeof(self->param.d8));
}
const guint8 *alsaseq_event_data_queue_get_byte_param(ALSASeqEventDataQueue *self);
void alsaseq_event_data_queue_set_byte_param(ALSASeqEventDataQueue *self,
- const guint32 bytes[8]);
+ const guint8 bytes[8]);
G_END_DECLS