diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-09-22 14:01:13 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-09-22 14:01:13 +0000 |
commit | 1fe509c0c26b31ee654dda17be99205362024f68 (patch) | |
tree | f0248f6827bece2662cc4899071c52b289c6b85a /cpp/src/icecpp/prefix.c | |
parent | Fix (diff) | |
download | ice-1fe509c0c26b31ee654dda17be99205362024f68.tar.bz2 ice-1fe509c0c26b31ee654dda17be99205362024f68.tar.xz ice-1fe509c0c26b31ee654dda17be99205362024f68.zip |
Ported IceUtil to VS 2005 Beta 2 x64
Diffstat (limited to 'cpp/src/icecpp/prefix.c')
-rw-r--r-- | cpp/src/icecpp/prefix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/icecpp/prefix.c b/cpp/src/icecpp/prefix.c index 7f56057a55d..075e148de88 100644 --- a/cpp/src/icecpp/prefix.c +++ b/cpp/src/icecpp/prefix.c @@ -137,7 +137,7 @@ concat VPROTO((char *first, ...)) while (arg != 0) { - length += strlen (arg); + length += (int) strlen (arg); arg = va_arg (args, char *); } @@ -272,7 +272,7 @@ translate_name (name) #endif ) { - prefix = save_string (prefix, strlen (prefix)); + prefix = save_string (prefix, (int)strlen (prefix)); prefix[strlen (prefix) - 1] = 0; } |