diff options
author | Nay <dnpd.dd@gmail.com> | 2012-09-03 18:16:04 +0100 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2012-09-03 18:16:04 +0100 |
commit | 25cc49b489c0e58fa621c65f187740f871598744 (patch) | |
tree | 56c1c16e75fed4b5ff124cfbdef39ed7437de784 /dep/g3dlite/source/RegistryUtil.cpp | |
parent | 83bb6d0207fbe98065013b1fa5840a5713c46b32 (diff) |
Core: Fix x64 compile and GCC compile
Diffstat (limited to 'dep/g3dlite/source/RegistryUtil.cpp')
-rw-r--r-- | dep/g3dlite/source/RegistryUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dep/g3dlite/source/RegistryUtil.cpp b/dep/g3dlite/source/RegistryUtil.cpp index 28ff6955d9b..fc4cebc2ee5 100644 --- a/dep/g3dlite/source/RegistryUtil.cpp +++ b/dep/g3dlite/source/RegistryUtil.cpp @@ -257,7 +257,7 @@ bool RegistryUtil::writeString(const std::string& key, const std::string& value, // static helpers -static HKEY getRootKeyFromString(const char* str, uint32 length) { +static HKEY getRootKeyFromString(const char* str, size_t length) { debugAssert(str); if (str) { |