Aenderungen fuer wieder funktionierendes strict_types
- Deklarative Casts hinzugefuegt
- Typen gefixt
Change-Id: I44c6082d907efb241a35da248774809054f8c5ab
diff --git a/secure/master/guild.c b/secure/master/guild.c
index d0c025c..e863409 100644
--- a/secure/master/guild.c
+++ b/secure/master/guild.c
@@ -26,8 +26,8 @@
{
string *guilds;
- if ((call_other(SIMUL_EFUN_FILE, "process_call") ||
- call_other(SIMUL_EFUN_FILE, "secure_level") < GOD_LVL) ||
+ if ((({int})call_other(SIMUL_EFUN_FILE, "process_call") ||
+ ({int})call_other(SIMUL_EFUN_FILE, "secure_level") < GOD_LVL) ||
!find_userinfo(user))
return 0;