summaryrefslogtreecommitdiff
path: root/src/os/macosx/crashlog_osx.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/os/macosx/crashlog_osx.cpp')
-rw-r--r--src/os/macosx/crashlog_osx.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/os/macosx/crashlog_osx.cpp b/src/os/macosx/crashlog_osx.cpp
index 17686d9e1..a1470b6d6 100644
--- a/src/os/macosx/crashlog_osx.cpp
+++ b/src/os/macosx/crashlog_osx.cpp
@@ -63,10 +63,12 @@ class CrashLogOSX : public CrashLog {
" Name: Mac OS X\n"
" Release: %d.%d.%d\n"
" Machine: %s\n"
- " Min Ver: %d\n",
+ " Min Ver: %d\n"
+ " Max Ver: %d\n",
ver_maj, ver_min, ver_bug,
arch != nullptr ? arch->description : "unknown",
- MAC_OS_X_VERSION_MIN_REQUIRED
+ MAC_OS_X_VERSION_MIN_REQUIRED,
+ MAC_OS_X_VERSION_MAX_ALLOWED
);
}