From 0b45b474f315338b69e227fa5c9757c228f4630c Mon Sep 17 00:00:00 2001 From: Aaron Gyes Date: Tue, 11 Dec 2018 02:50:03 -0800 Subject: [PATCH] Update bugreport() I left this out of the last commit accidentally. --- src/common.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common.cpp b/src/common.cpp index 82c85181f..761c2d0fa 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -2010,8 +2010,8 @@ int create_directory(const wcstring &d) { } __attribute__((noinline)) void bugreport() { - debug(0, _(L"This is a bug. Break on bugreport to debug.")); - debug(0, _(L"If you can reproduce it, please send a bug report to %s."), PACKAGE_BUGREPORT); + debug(0, _(L"This is a bug. Break on 'bugreport' to debug.")); + debug(0, _(L"If you can reproduce it, please report: %s."), PACKAGE_BUGREPORT); } wcstring format_size(long long sz) {