summaryrefslogtreecommitdiff
path: root/vm_dump.c
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 /vm_dump.c
parent584afabcc059879ee16dd9d8cca4a2b0af4ea80e (diff)
* 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
Diffstat (limited to 'vm_dump.c')
-rw-r--r--vm_dump.c7
1 files changed, 4 insertions, 3 deletions
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];