Merge branch 'hotfix/cast-to-bool'

This commit is contained in:
Lukas Spieß
2015-10-22 22:02:52 +02:00

View File

@@ -284,7 +284,7 @@ BOOL bit_isAppStoreReceiptSandbox(void) {
}
BOOL bit_hasEmbeddedMobileProvision(void) {
BOOL hasEmbeddedMobileProvision = [[NSBundle mainBundle] pathForResource:@"embedded" ofType:@"mobileprovision"];
BOOL hasEmbeddedMobileProvision = !![[NSBundle mainBundle] pathForResource:@"embedded" ofType:@"mobileprovision"];
return hasEmbeddedMobileProvision;
}