Changeset 5591 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Oct 31, 2007 9:58:45 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/utf8-posix.cpp
r5588 r5591 102 102 const void *pvInputLeft = pvInput; 103 103 void *pvOutputLeft = pvOutput; 104 #if defined(RT_OS_LINUX) || defined(_LIBICONV_VERSION) /* there are different opinions about the constness of the input buffer. */104 #if defined(RT_OS_LINUX) || (defined(RT_OS_DARWIN) && defined(_DARWIN_FEATURE_UNIX_CONFORMANCE)) /* there are different opinions about the constness of the input buffer. */ 105 105 if (iconv(icHandle, (char **)&pvInputLeft, &cbInLeft, (char **)&pvOutputLeft, &cbOutLeft) != (size_t)-1) 106 106 #else
Note:
See TracChangeset
for help on using the changeset viewer.