Skip to content

Commit 66be9d1

Browse files
Merge pull request #2417 from iguessthislldo/igtd/android-ace6
[ace6tao2] Fixed building ACE for Android with `uses_wchar=1`
2 parents 0fa6379 + 727d7db commit 66be9d1

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

ACE/NEWS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ USER VISIBLE CHANGES BETWEEN ACE-6.5.22 and ACE-6.5.23
33

44
. Backported TTY_IO enhancements from ACE-7.x
55

6+
. Fixed building ACE for Android with `uses_wchar=1`
7+
68
USER VISIBLE CHANGES BETWEEN ACE-6.5.21 and ACE-6.5.22
79
======================================================
810

ACE/ace/Log_Msg_Android_Logcat.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ ACE_Log_Msg_Android_Logcat::log (ACE_Log_Record &log_record)
7272
__android_log_write (
7373
convert_log_priority (static_cast<ACE_Log_Priority> (log_record.type ())),
7474
"ACE",
75-
log_record.msg_data ());
75+
ACE_TEXT_ALWAYS_CHAR (log_record.msg_data ()));
7676
return 0;
7777
}
7878

0 commit comments

Comments
 (0)