Correct typo occured -> occurred in function name
This commit is contained in:
parent
1666d285d7
commit
eafcc06030
1 changed files with 4 additions and 4 deletions
|
@ -41,7 +41,7 @@ struct _ObtSignalCallback
|
||||||
|
|
||||||
static gboolean signal_prepare(GSource *source, gint *timeout);
|
static gboolean signal_prepare(GSource *source, gint *timeout);
|
||||||
static gboolean signal_check(GSource *source);
|
static gboolean signal_check(GSource *source);
|
||||||
static gboolean signal_occured(GSource *source, GSourceFunc callback,
|
static gboolean signal_occurred(GSource *source, GSourceFunc callback,
|
||||||
gpointer data);
|
gpointer data);
|
||||||
static void sighandler(gint sig);
|
static void sighandler(gint sig);
|
||||||
|
|
||||||
|
@ -78,7 +78,7 @@ static const gint core_signals[] =
|
||||||
static GSourceFuncs source_funcs = {
|
static GSourceFuncs source_funcs = {
|
||||||
signal_prepare,
|
signal_prepare,
|
||||||
signal_check,
|
signal_check,
|
||||||
signal_occured,
|
signal_occurred,
|
||||||
NULL
|
NULL
|
||||||
};
|
};
|
||||||
static GSource *gsource = NULL;
|
static GSource *gsource = NULL;
|
||||||
|
@ -228,8 +228,8 @@ static gboolean signal_check(GSource *source)
|
||||||
return signal_fired;
|
return signal_fired;
|
||||||
}
|
}
|
||||||
|
|
||||||
static gboolean signal_occured(GSource *source, GSourceFunc callback,
|
static gboolean signal_occurred(GSource *source, GSourceFunc callback,
|
||||||
gpointer data)
|
gpointer data)
|
||||||
{
|
{
|
||||||
guint i;
|
guint i;
|
||||||
sigset_t oldset;
|
sigset_t oldset;
|
||||||
|
|
Loading…
Reference in a new issue