diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-03 10:12:57 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-14 09:12:28 +0100 |
commit | 7130cf0c61e259ee6d8479cd804e9284cf6859f6 (patch) | |
tree | f1b11af35294d103d79cf0870535a147bd775683 /src/debug_utilities | |
parent | Merge pull request #2548 (diff) | |
download | monero-7130cf0c61e259ee6d8479cd804e9284cf6859f6.tar.xz |
Add tools::on_startup, and warn about glibc 2.25 bug if found
https://sourceware.org/bugzilla/show_bug.cgi?id=21778
Diffstat (limited to 'src/debug_utilities')
-rw-r--r-- | src/debug_utilities/cn_deserialize.cpp | 2 | ||||
-rw-r--r-- | src/debug_utilities/object_sizes.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/debug_utilities/cn_deserialize.cpp b/src/debug_utilities/cn_deserialize.cpp index a1b569554..7235ef855 100644 --- a/src/debug_utilities/cn_deserialize.cpp +++ b/src/debug_utilities/cn_deserialize.cpp @@ -45,7 +45,7 @@ int main(int argc, char* argv[]) uint32_t log_level = 0; std::string input; - tools::sanitize_locale(); + tools::on_startup(); boost::filesystem::path output_file_path; diff --git a/src/debug_utilities/object_sizes.cpp b/src/debug_utilities/object_sizes.cpp index 47ba5cf6c..63b702700 100644 --- a/src/debug_utilities/object_sizes.cpp +++ b/src/debug_utilities/object_sizes.cpp @@ -64,7 +64,7 @@ int main(int argc, char* argv[]) { size_logger sl; - tools::sanitize_locale(); + tools::on_startup(); mlog_configure("", true); |