-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 20
-
Component/s: core-libs
-
b03
-
other
If not being compiled on Linux, macOS, or AIX, transferTo() returns
#else
return IOS_UNSUPPORTED_CASE;
#endif
when it should be
#else
return IOS_UNSUPPORTED;
#endif
as the function is not available on the OS in question.
#else
return IOS_UNSUPPORTED_CASE;
#endif
when it should be
#else
return IOS_UNSUPPORTED;
#endif
as the function is not available on the OS in question.