aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-02 07:52:56 +0000
committermrkn <mrkn@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2012-11-02 07:52:56 +0000
commit8db54e07f9154d2cf6d4242f864e68e4d54c2b25 (patch)
treedb9e1af333737740bf62c43105b4e2e76265dfcb
parent584afabcc059879ee16dd9d8cca4a2b0af4ea80e (diff)
downloadruby-8db54e07f9154d2cf6d4242f864e68e4d54c2b25.tar.gz
* vm_dump.c (rb_vm_bugreport): add ~/Library/Logs/DiagnosticReports
in the locations list of crash reports. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37422 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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];