The 'port_id' parameters of 'alsaseq_user_client_create_port()' is
a pointer to storage of unsigned char type, due to optional parameter
in g-i interface. It's read-only if having value and it's better to
have const qualifier.
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
*/
void alsaseq_user_client_create_port(ALSASeqUserClient *self,
ALSASeqPortInfo *port_info,
- guint8 *port_id, GError **error)
+ const guint8 *port_id, GError **error)
{
ALSASeqUserClientPrivate *priv;
struct snd_seq_port_info *info;
void alsaseq_user_client_create_port(ALSASeqUserClient *self,
ALSASeqPortInfo *port_info,
- guint8 *port_id, GError **error);
+ const guint8 *port_id, GError **error);
void alsaseq_user_client_update_port(ALSASeqUserClient *self,
ALSASeqPortInfo *port_info,