diff options
author | Benoit Foucher <benoit@zeroc.com> | 2006-05-11 08:59:09 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2006-05-11 08:59:09 +0000 |
commit | ea616b812c2dcacbadfa3858f7dfda40fe107e9b (patch) | |
tree | a72f63db6f5562a15b144a4fb4e443393d94467a /cpp/src/IceGrid/Activator.cpp | |
parent | Added user attribute (diff) | |
download | ice-ea616b812c2dcacbadfa3858f7dfda40fe107e9b.tar.bz2 ice-ea616b812c2dcacbadfa3858f7dfda40fe107e9b.tar.xz ice-ea616b812c2dcacbadfa3858f7dfda40fe107e9b.zip |
Win32 fixes
Diffstat (limited to 'cpp/src/IceGrid/Activator.cpp')
-rw-r--r-- | cpp/src/IceGrid/Activator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/Activator.cpp b/cpp/src/IceGrid/Activator.cpp index bea536fbb49..f797e1f8580 100644 --- a/cpp/src/IceGrid/Activator.cpp +++ b/cpp/src/IceGrid/Activator.cpp @@ -459,7 +459,7 @@ Activator::activate(const string& name, vector<char> buf(256); buf.resize(256); DWORD size = buf.size(); - bool success = GetUserName(&buf[0], &size) + bool success = GetUserName(&buf[0], &size); if(!success && GetLastError() == ERROR_INSUFFICIENT_BUFFER) { buf.resize(size); |