Skip to content

Commit 7389a1a

Browse files
author
Robert Bartoszewski
committed
Fixed warnings
1 parent 8cec700 commit 7389a1a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Sources/KSCrashRecording/Monitors/KSCrashMonitor_System.m

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,11 +319,11 @@ static bool procTranslated(void)
319319
int proc_translated = 0;
320320
size_t size = sizeof(proc_translated);
321321
if (!sysctlbyname("sysctl.proc_translated", &proc_translated, &size, NULL, 0) && proc_translated) {
322-
return @YES;
322+
return YES;
323323
}
324324
#endif
325325

326-
return @NO;
326+
return NO;
327327
}
328328

329329
/** Check if the current build is a debug build.

Sources/KSCrashRecordingCore/include/KSDynamicLinker.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@ KSBinaryImage *ksdl_get_images(void);
9494
*
9595
* @param header The Mach binary image header.
9696
*
97-
* @param image_name The name of the image.
98-
*
9997
* @param buffer A structure to hold the information.
10098
*
10199
* @return True if the image was successfully queried.

0 commit comments

Comments
 (0)