1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-26 11:12:19 -05:00

Fix loading enchant on Unix

This commit is contained in:
TingPing 2013-10-01 07:55:37 -04:00
parent ba74e70ec1
commit d643056ca0

View File

@ -159,8 +159,9 @@ initialize_enchant ()
enchant = g_module_open("libenchant.so.1", 0);
if (enchant == NULL)
return;
#endif
#else
return;
#endif
}
have_enchant = TRUE;