Skip to content

Commit

Permalink
entry: add G_GNUC_UNUSED in unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0w committed Nov 4, 2024
1 parent e20d393 commit c23e918
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion testsuite/ctk/entry.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ typedef struct {
} EntryData;

static void
notify (CtkEditable *editable, GParamSpec *pspec, EntryData *data)
notify (CtkEditable *editable,
GParamSpec *pspec G_GNUC_UNUSED,
EntryData *data)
{
data->serial = serial++;
data->count++;
Expand Down

0 comments on commit c23e918

Please sign in to comment.