summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libs/ardour/export_filename.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/ardour/export_filename.cc b/libs/ardour/export_filename.cc
index 274374e20d..3e0e3f62bf 100644
--- a/libs/ardour/export_filename.cc
+++ b/libs/ardour/export_filename.cc
@@ -24,7 +24,7 @@
#include <glibmm/fileutils.h>
#include "pbd/xml++.h"
-#include "pbd/convert.h"
+#include "pbd/string_convert.h"
#include "pbd/enumwriter.h"
#include "pbd/localtime_r.h"
@@ -209,7 +209,7 @@ ExportFilename::get_path (ExportFormatSpecPtr format) const
if (include_revision) {
path += filename_empty ? "" : "_";
path += "r";
- path += to_string (revision, std::dec);
+ path += to_string (revision);
filename_empty = false;
}
@@ -228,7 +228,7 @@ ExportFilename::get_path (ExportFormatSpecPtr format) const
if (include_channel) {
path += filename_empty ? "" : "_";
path += "channel";
- path += to_string (channel, std::dec);
+ path += to_string (channel);
filename_empty = false;
}