diff options
author | Bernard Normier <bernard@zeroc.com> | 2008-04-22 18:11:00 -0400 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2008-04-22 18:11:00 -0400 |
commit | c4b430dcc78b9baa80a823b61ed7059dd3bb96bb (patch) | |
tree | 00d5c4e6a78fa35650b6e85d549238c4b2bfc009 /cpp/src/IceStringConverter/Plugin.cpp | |
parent | Missing file (diff) | |
download | ice-c4b430dcc78b9baa80a823b61ed7059dd3bb96bb.tar.bz2 ice-c4b430dcc78b9baa80a823b61ed7059dd3bb96bb.tar.xz ice-c4b430dcc78b9baa80a823b61ed7059dd3bb96bb.zip |
StringConverter plugin windows port + various windows build fixes
Diffstat (limited to 'cpp/src/IceStringConverter/Plugin.cpp')
-rw-r--r-- | cpp/src/IceStringConverter/Plugin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceStringConverter/Plugin.cpp b/cpp/src/IceStringConverter/Plugin.cpp index 6ae52006621..bdf34dfe75f 100644 --- a/cpp/src/IceStringConverter/Plugin.cpp +++ b/cpp/src/IceStringConverter/Plugin.cpp @@ -40,7 +40,7 @@ createStringConverter(const CommunicatorPtr& communicator, const string& name, c { if(args[i].find("windows=") == 0) { - cp = atoi(args[i].substr(strlen("windows="))); + cp = atoi(args[i].substr(strlen("windows=")).c_str()); } else if(args[i].find("iconv=") != 0) { |