1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-29 20:52:16 -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); enchant = g_module_open("libenchant.so.1", 0);
if (enchant == NULL) if (enchant == NULL)
return; return;
#endif #else
return; return;
#endif
} }
have_enchant = TRUE; have_enchant = TRUE;