summaryrefslogtreecommitdiff
path: root/cpp/src/icecpp/prefix.c
diff options
context:
space:
mode:
authorBernard Normier <bernard@zeroc.com>2005-09-22 14:01:13 +0000
committerBernard Normier <bernard@zeroc.com>2005-09-22 14:01:13 +0000
commit1fe509c0c26b31ee654dda17be99205362024f68 (patch)
treef0248f6827bece2662cc4899071c52b289c6b85a /cpp/src/icecpp/prefix.c
parentFix (diff)
downloadice-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.c4
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;
}