diff --git a/React/Base/RCTLog.h b/React/Base/RCTLog.h index 27cdf3158..d6c3a215e 100644 --- a/React/Base/RCTLog.h +++ b/React/Base/RCTLog.h @@ -124,7 +124,7 @@ RCT_EXTERN void RCTPerformBlockWithLogPrefix(void (^block)(void), NSString *pref * Private logging function - ignore this. */ #if RCTLOG_ENABLED -#define _RCTLog(lvl, ...) _RCTLogNativeInternal(lvl, __FILE__, __LINE__, __VA_ARGS__); +#define _RCTLog(lvl, ...) _RCTLogNativeInternal(lvl, __FILE__, __LINE__, __VA_ARGS__) #else #define _RCTLog(lvl, ...) do { } while (0) #endif diff --git a/React/Modules/RCTAsyncLocalStorage.m b/React/Modules/RCTAsyncLocalStorage.m index e3972229e..34442779b 100644 --- a/React/Modules/RCTAsyncLocalStorage.m +++ b/React/Modules/RCTAsyncLocalStorage.m @@ -219,7 +219,7 @@ RCT_EXPORT_MODULE() RCTAssertThread(RCTGetMethodQueue(), @"Must be executed on storage thread"); #if TARGET_OS_TV - RCTLogWarn(@"Persistent storage is not supported on tvOS, your data may be removed at any point.") + RCTLogWarn(@"Persistent storage is not supported on tvOS, your data may be removed at any point."); #endif NSError *error = nil;