diff options
author | TestingPlant <49836-TestingPlant@users.noreply.gitlab.gnome.org> | 2022-05-21 21:16:24 +0000 |
---|---|---|
committer | TestingPlant <49836-TestingPlant@users.noreply.gitlab.gnome.org> | 2022-05-22 01:06:37 +0000 |
commit | da7a31a052614edd2cc87518585ff371cbb0f204 (patch) | |
tree | debe7d88d02e6a4dbee6ee85d1493ced6ffdfaf7 /glib/giochannel.c | |
parent | b49f36f69f21027917a0958d8e30a8d24458c535 (diff) | |
download | glib-da7a31a052614edd2cc87518585ff371cbb0f204.tar.gz |
Rename user data parameters to user_data
The user data parameters in callbacks need to be named user_data to
generate correct closure attributes in the introspection data. This
updates parameters missed in GNOME/glib!2633.
Diffstat (limited to 'glib/giochannel.c')
-rw-r--r-- | glib/giochannel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/glib/giochannel.c b/glib/giochannel.c index 6c7266720..6fec45f66 100644 --- a/glib/giochannel.c +++ b/glib/giochannel.c @@ -679,7 +679,7 @@ g_io_add_watch_full (GIOChannel *channel, * GIOFunc: * @source: the #GIOChannel event source * @condition: the condition which has been satisfied - * @data: user data set in g_io_add_watch() or g_io_add_watch_full() + * @user_data: user data set in g_io_add_watch() or g_io_add_watch_full() * * Specifies the type of function passed to g_io_add_watch() or * g_io_add_watch_full(), which is called when the requested condition |