From 0bbf72a0339d2d3e8f1bb00233d137423ca72b10 Mon Sep 17 00:00:00 2001 From: Andreas Linde Date: Mon, 22 Jun 2015 09:42:43 +0200 Subject: [PATCH] Fix compiler warning in test case --- Support/HockeySDKTests/BITTestHelper.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Support/HockeySDKTests/BITTestHelper.m b/Support/HockeySDKTests/BITTestHelper.m index 44eaad6690..c1fe8455e2 100644 --- a/Support/HockeySDKTests/BITTestHelper.m +++ b/Support/HockeySDKTests/BITTestHelper.m @@ -67,7 +67,7 @@ // the bundle identifier when running with unit tets is "otest" const char *progname = getprogname(); if (progname == NULL) { - return NO; + return nil; } NSString *filePath = [[NSBundle bundleForClass:self.class] pathForResource:filename ofType:@"plcrash"];