diff options
author | Bernard Normier <bernard@zeroc.com> | 2007-07-17 21:04:21 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2007-07-17 21:04:21 -0400 |
commit | d878406f23096b1771ada352f3c24f70e65b962c (patch) | |
tree | 2144c33650562db046d1695d5c6cafadd118784c | |
parent | Merge branch 'master' of ssh://cvs.zeroc.com/home/git/ice (diff) | |
download | ice-d878406f23096b1771ada352f3c24f70e65b962c.tar.bz2 ice-d878406f23096b1771ada352f3c24f70e65b962c.tar.xz ice-d878406f23096b1771ada352f3c24f70e65b962c.zip |
build fix
-rw-r--r-- | cpp/include/Ice/IconvStringConverter.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/include/Ice/IconvStringConverter.h b/cpp/include/Ice/IconvStringConverter.h index 03f93280edb..7070f9eb378 100644 --- a/cpp/include/Ice/IconvStringConverter.h +++ b/cpp/include/Ice/IconvStringConverter.h @@ -260,7 +260,7 @@ IconvStringConverter<charT>::toUTF8(const charT* sourceStart, const charT* sourc #ifdef ICE_NO_ERRNO } while(count == size_t(-1)); #else - } while(count == size_t(-1) && _errno == E2BIG); + } while(count == size_t(-1) && errno == E2BIG); #endif if(count == size_t(-1)) @@ -326,7 +326,7 @@ IconvStringConverter<charT>::fromUTF8(const Ice::Byte* sourceStart, const Ice::B #ifdef ICE_NO_ERRNO } while(count == size_t(-1)); #else - } while(count == size_t(-1) && _errno == E2BIG); + } while(count == size_t(-1) && errno == E2BIG); #endif if(count == size_t(-1)) |