summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/utility.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utility.h b/src/utility.h
index 98fa83e89..ed368b208 100644
--- a/src/utility.h
+++ b/src/utility.h
@@ -225,7 +225,7 @@ inline u16 readU16(std::istream &is)
inline void writeU32(std::ostream &os, u32 p)
{
char buf[4];
- writeU16((u8*)buf, p);
+ writeU32((u8*)buf, p);
os.write(buf, 4);
}
inline u32 readU32(std::istream &is)
@@ -367,7 +367,7 @@ public:
else
data = NULL;
}
- Buffer(T *t, unsigned int size)
+ Buffer(const T *t, unsigned int size)
{
m_size = size;
if(size != 0)