Skip to content

Commit

Permalink
value: add G_GNUC_UNUSED in unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0w committed Nov 18, 2024
1 parent bad102a commit 962bbe8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions testsuite/a11y/value.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ typedef struct
} NotifyData;

static void
notify_cb (GObject *obj,
GParamSpec *pspec, NotifyData *data)
notify_cb (GObject *obj G_GNUC_UNUSED,
GParamSpec *pspec,
NotifyData *data)
{
data->count++;
g_free (data->last_name);
Expand Down

0 comments on commit 962bbe8

Please sign in to comment.