diff options
author | Christian Hesse <mail@eworm.de> | 2013-05-29 21:54:54 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2013-05-29 21:54:54 +0200 |
commit | 6d676d46241b5070b71a07edd61f7cd07cf1c044 (patch) | |
tree | 06c29bc49117c799bbe3689d286d9ddf2afaaaac /cqrlogo.c | |
parent | bf02bb046ac6994ed7d4b807b6f96d29cc3e77a3 (diff) | |
download | cqrlogo-6d676d46241b5070b71a07edd61f7cd07cf1c044.tar.gz cqrlogo-6d676d46241b5070b71a07edd61f7cd07cf1c044.tar.zst |
check for glib < 2.36, not glib < 2.26
Diffstat (limited to 'cqrlogo.c')
-rw-r--r-- | cqrlogo.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ int main(int argc, char **argv) { free(pattern); /* initialize type system for glib < 2.36 */ -#ifndef GLIB_VERSION_2_26 +#ifndef GLIB_VERSION_2_36 g_type_init(); #endif |