diff --git a/Sources/KSCrashRecording/KSCrashAppMemoryTracker.m b/Sources/KSCrashRecording/KSCrashAppMemoryTracker.m index f682aca7..16e926cf 100644 --- a/Sources/KSCrashRecording/KSCrashAppMemoryTracker.m +++ b/Sources/KSCrashRecording/KSCrashAppMemoryTracker.m @@ -149,7 +149,7 @@ - (void)stop #elif KSCRASH_HOST_MAC // macOS doesn't limit memory usage the same way as it's implemented for other OSs. // So we just mock limit by having a large value instead (128 GB). - uint64_t limit = 137438953472; // 128 GB + uint64_t limit = 137438953472; // 128 GB uint64_t remaining = limit < info.phys_footprint ? 0 : limit - info.phys_footprint; #else uint64_t remaining = info.limit_bytes_remaining;