From c6fc4f36a34e82f1602b4a8b95c95b952765bf9a Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 29 Sep 2020 17:34:21 +0200 Subject: [PATCH] Include version in crashdump --- gtk2_ardour/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc index 39424d0e6b..8e0797034f 100644 --- a/gtk2_ardour/main.cc +++ b/gtk2_ardour/main.cc @@ -347,7 +347,7 @@ int main (int argc, char *argv[]) g_mkdir_with_parents (crash_dir.c_str(), 0700); Glib::DateTime tm (g_date_time_new_now_local ()); - string crash_file = string_compose ("%1-crash-%2.txt", PROGRAM_NAME, tm.format ("%s")); + string crash_file = string_compose ("%1-%2-crash-%3.txt", PROGRAM_NAME, VERSIONSTRING, tm.format ("%s")); string crash_path = Glib::build_filename (crash_dir, crash_file); ExcHndlInit ();