diff options
author | Max Kellermann <max@musicpd.org> | 2016-11-02 09:54:13 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2016-11-02 09:54:13 +0100 |
commit | 6d409d27ca945389d34a43fdde70f548faeb36da (patch) | |
tree | 1bc7329a7c61a8b4d4ec7a05e14e6a66117601cd /src/Main.cxx | |
parent | e9c2885f3475930107a4984db2cd9823c053054f (diff) |
lib/icu: migrate from class Error to C++ exceptions
Diffstat (limited to 'src/Main.cxx')
-rw-r--r-- | src/Main.cxx | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/Main.cxx b/src/Main.cxx index 9a095b1c7..243a7f275 100644 --- a/src/Main.cxx +++ b/src/Main.cxx @@ -400,10 +400,7 @@ try { #endif #endif - if (!IcuInit(error)) { - LogError(error); - return EXIT_FAILURE; - } + IcuInit(); winsock_init(); io_thread_init(); |