diff options
author | Bernard Normier <bernard@zeroc.com> | 2005-10-18 23:11:02 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2005-10-18 23:11:02 +0000 |
commit | 45fb03b005f16690a91aa29b821e25f10ce8a6e6 (patch) | |
tree | 0382c23605f0323da0575bd1094ba3aa54cab5b3 /cpp/src | |
parent | added [ami] to patchApplication (diff) | |
download | ice-45fb03b005f16690a91aa29b821e25f10ce8a6e6.tar.bz2 ice-45fb03b005f16690a91aa29b821e25f10ce8a6e6.tar.xz ice-45fb03b005f16690a91aa29b821e25f10ce8a6e6.zip |
x86 is now the default machine on Windows
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IceGrid/PlatformInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/PlatformInfo.cpp b/cpp/src/IceGrid/PlatformInfo.cpp index 55b9e982be7..51a1c525b4c 100644 --- a/cpp/src/IceGrid/PlatformInfo.cpp +++ b/cpp/src/IceGrid/PlatformInfo.cpp @@ -136,7 +136,7 @@ PlatformInfo::PlatformInfo(const Ice::CommunicatorPtr& communicator, const Trace os << osInfo.dwMajorVersion << "." << osInfo.dwMinorVersion; _info.release = os.str(); _info.version = osInfo.szCSDVersion; - _info.machine = ""; // TODO? + _info.machine = "x86"; // TODO? #else struct utsname utsinfo; uname(&utsinfo); |