-
Bug
-
Resolution: Fixed
-
P4
-
20
-
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.