summaryrefslogtreecommitdiffstats
path: root/src/net/messageout.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/messageout.h')
-rw-r--r--src/net/messageout.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/messageout.h b/src/net/messageout.h
index a39e306..af5980f 100644
--- a/src/net/messageout.h
+++ b/src/net/messageout.h
@@ -75,7 +75,7 @@ class MessageOut
/**
* Returns the length of the data.
*/
- unsigned int getLength() const { return mPos; }
+ unsigned getLength() const { return mPos; }
/**
* Sets whether the debug mode is enabled. In debug mode, the internal
@@ -96,8 +96,8 @@ class MessageOut
void writeValueType(ManaServ::ValueType type);
char *mData; /**< Data building up. */
- unsigned int mPos; /**< Position in the data. */
- unsigned int mDataSize; /**< Allocated datasize. */
+ unsigned mPos; /**< Position in the data. */
+ unsigned mDataSize; /**< Allocated datasize. */
bool mDebugMode; /**< Include debugging information. */
/**