diff options
author | Tor Lillqvist <tml@collabora.com> | 2019-10-15 12:36:42 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2019-10-15 12:47:19 +0300 |
commit | 525163c074785a0b59590ca13f0d1cd6cdc1b2db (patch) | |
tree | a0b2f84cfc42f1d957c4425b0d85014ed9d53ca0 /desktop | |
parent | 0ff6e236b7eba698b9766030e698410acd0235d0 (diff) |
Bin a fairly pointless unconditional NSLog() call
Change-Id: I7c1910c3e1bf345966ec289aaf5f9c9b6cbabc22
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 4fb369ac997c..048b358175c4 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -5497,10 +5497,10 @@ static int lo_initialize(LibreOfficeKit* pThis, const char* pAppPath, const char { // Quick test that ICU works... UConverter *cnv = ucnv_open("iso-8859-3", &icuStatus); - NSLog(@"ucnv_open(iso-8859-3)-> %p, err = %s, name=%s", - (void *)cnv, u_errorName(icuStatus), (!cnv)?"?":ucnv_getName(cnv,&icuStatus)); if (U_SUCCESS(icuStatus)) ucnv_close(cnv); + else + NSLog(@"ucnv_open() failed: %s", u_errorName(icuStatus)); } } } |