mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-14 08:03:47 +01:00
Simplify
This commit is contained in:
parent
9fe6a4a2d6
commit
0d8a0db735
@ -1634,13 +1634,11 @@ error_ret:
|
|||||||
static gboolean
|
static gboolean
|
||||||
zathura_signal_sigterm(gpointer data)
|
zathura_signal_sigterm(gpointer data)
|
||||||
{
|
{
|
||||||
if (data == NULL) {
|
if (data != NULL) {
|
||||||
return TRUE;
|
zathura_t* zathura = data;
|
||||||
|
cb_destroy(NULL, zathura);
|
||||||
}
|
}
|
||||||
|
|
||||||
zathura_t* zathura = (zathura_t*) data;
|
|
||||||
cb_destroy(NULL, zathura);
|
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user