diff --git a/v2/internal/ffenestri/ffenestri_darwin.c b/v2/internal/ffenestri/ffenestri_darwin.c index 9edc7c072..8e2ee2260 100644 --- a/v2/internal/ffenestri/ffenestri_darwin.c +++ b/v2/internal/ffenestri/ffenestri_darwin.c @@ -152,7 +152,7 @@ void Fatal(struct Application *app, const char *message, ... ) { // Requires NSString input EG lookupStringConstant(str("NSFontAttributeName")) void* lookupStringConstant(id constantName) { - void ** dataPtr = CFBundleGetDataPointerForName(CFBundleGetBundleWithIdentifier(str("com.apple.AppKit")), (CFStringRef) constantName); + void ** dataPtr = CFBundleGetDataPointerForName(CFBundleGetBundleWithIdentifier((CFStringRef)str("com.apple.AppKit")), (CFStringRef) constantName); return (dataPtr ? *dataPtr : nil); }