forked from github/server
Merge pull request #519 from CTD1/master
Fix VS Warning about bool - int convertion
This commit is contained in:
commit
9f836e2f4b
|
@ -1059,7 +1059,7 @@ int rule_give(void)
|
||||||
|
|
||||||
bool markets_module(void)
|
bool markets_module(void)
|
||||||
{
|
{
|
||||||
return config_get_int("modules.markets", 0);
|
return (bool)config_get_int("modules.markets", 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct param *configuration;
|
static struct param *configuration;
|
||||||
|
|
Loading…
Reference in New Issue