Skip to content

Commit

Permalink
Fix format
Browse files Browse the repository at this point in the history
  • Loading branch information
bamx23 committed Oct 11, 2024
1 parent db5a160 commit 6447338
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/KSCrashRecording/KSCrashAppMemoryTracker.m
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 6447338

Please sign in to comment.