diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-25 20:06:37 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-02-25 20:06:37 +0100 |
commit | 24d3d5dac40562f22a43eb9934c90165ace92a35 (patch) | |
tree | 43f641312f850d0123f0d86a6a685f4e5ac6ffc9 /source/OSSupport/GZipFile.cpp | |
parent | Moved the Speed member into cEntity class instead of its descendants. (diff) | |
download | cuberite-24d3d5dac40562f22a43eb9934c90165ace92a35.tar cuberite-24d3d5dac40562f22a43eb9934c90165ace92a35.tar.gz cuberite-24d3d5dac40562f22a43eb9934c90165ace92a35.tar.bz2 cuberite-24d3d5dac40562f22a43eb9934c90165ace92a35.tar.lz cuberite-24d3d5dac40562f22a43eb9934c90165ace92a35.tar.xz cuberite-24d3d5dac40562f22a43eb9934c90165ace92a35.tar.zst cuberite-24d3d5dac40562f22a43eb9934c90165ace92a35.zip |
Diffstat (limited to '')
-rw-r--r-- | source/OSSupport/GZipFile.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/OSSupport/GZipFile.cpp b/source/OSSupport/GZipFile.cpp index dbdef3a8b..c57de5198 100644 --- a/source/OSSupport/GZipFile.cpp +++ b/source/OSSupport/GZipFile.cpp @@ -85,7 +85,7 @@ int cGZipFile::ReadRestOfFile(AString & a_Contents) -bool cGZipFile::Write(const AString & a_Contents)
+bool cGZipFile::Write(const char * a_Contents, int a_Size)
{
if (m_File == NULL)
{
@@ -99,7 +99,7 @@ bool cGZipFile::Write(const AString & a_Contents) return false;
}
- return (gzwrite(m_File, a_Contents.data(), a_Contents.size()) != 0);
+ return (gzwrite(m_File, a_Contents, a_Size) != 0);
}
|