mirror of
https://gitlab.com/mishakmak/pam-fprint-grosshack.git
synced 2026-04-09 04:13:33 +02:00
main: call g_type_init only if using an old glib
Calling g_type_init() is not needed anymore and deprecated since glib version 2.36. https://bugs.freedesktop.org/show_bug.cgi?id=99812
This commit is contained in:
committed by
Bastien Nocera
parent
06ea385260
commit
3d2d73d615
@ -300,7 +300,10 @@ int main(int argc, char **argv)
|
|||||||
|
|
||||||
context = g_option_context_new ("Fingerprint handler daemon");
|
context = g_option_context_new ("Fingerprint handler daemon");
|
||||||
g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
|
g_option_context_add_main_entries (context, entries, GETTEXT_PACKAGE);
|
||||||
|
|
||||||
|
#if !GLIB_CHECK_VERSION (2, 36, 0)
|
||||||
g_type_init();
|
g_type_init();
|
||||||
|
#endif
|
||||||
|
|
||||||
if (g_option_context_parse (context, &argc, &argv, &error) == FALSE) {
|
if (g_option_context_parse (context, &argc, &argv, &error) == FALSE) {
|
||||||
g_print ("couldn't parse command-line options: %s\n", error->message);
|
g_print ("couldn't parse command-line options: %s\n", error->message);
|
||||||
|
|||||||
Reference in New Issue
Block a user