summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--vm_dump.c7
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2f86e8f762..455587de03 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Fri Nov 2 16:44:00 2012 Kenta Murata <mrkn@mrkn.jp>
+
+ * vm_dump.c (rb_vm_bugreport): add ~/Library/Logs/DiagnosticReports
+ in the locations list of crash reports.
+
Fri Nov 2 14:52:52 2012 Masaki Matsushita <glass.saga@gmail.com>
* array.c (recursive_equal): performance improvement.
diff --git a/vm_dump.c b/vm_dump.c
index e84e59aae2..28b6955d68 100644
--- a/vm_dump.c
+++ b/vm_dump.c
@@ -635,9 +635,10 @@ rb_vm_bugreport(void)
fprintf(stderr, "\n");
fprintf(stderr, " See Crash Report log file under "
"~/Library/Logs/CrashReporter,\n");
- fprintf(stderr, " /Library/Logs/CrashReporter, or "
- "/Library/Logs/DiagnosticReports, for\n");
- fprintf(stderr, " the more detail of.\n");
+ fprintf(stderr, " ~/Library/Logs/DiagnosticReports, "
+ "/Library/Logs/CrashReporter,\n");
+ fprintf(stderr, " or /Library/Logs/DiagnosticReports "
+ "for the more detail of.\n");
#elif HAVE_BACKTRACE
#define MAX_NATIVE_TRACE 1024
static void *trace[MAX_NATIVE_TRACE];