diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-08-18 20:13:42 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-08-18 20:13:42 +0000 |
commit | 27ee15a799b1a252023f34e869e566309cef40bd (patch) | |
tree | 30e44c6ac80a6963c96a95c5ee2842ace5d3eb25 /cpp/src | |
parent | fix (diff) | |
download | ice-27ee15a799b1a252023f34e869e566309cef40bd.tar.bz2 ice-27ee15a799b1a252023f34e869e566309cef40bd.tar.xz ice-27ee15a799b1a252023f34e869e566309cef40bd.zip |
SunCC fix
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IcePack/ActivatorI.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/IcePack/ActivatorI.cpp b/cpp/src/IcePack/ActivatorI.cpp index 94059ecb7c1..cbf990cfed7 100644 --- a/cpp/src/IcePack/ActivatorI.cpp +++ b/cpp/src/IcePack/ActivatorI.cpp @@ -185,9 +185,11 @@ IcePack::ActivatorI::activate(const ServerPtr& server) out << "pwd = " << pwd << "\n"; out << "args = "; - for(StringSeq::const_iterator p = ++args.begin(); p != args.end(); ++p) + StringSeq::const_iterator p = args.begin(); + ++p; + for(StringSeq::const_iterator q = p; q != args.end(); ++q) { - out << " " << *p; + out << " " << *q; } } } |