diff options
Diffstat (limited to 'protocols/AimOscar/src/tlv.cpp')
-rw-r--r-- | protocols/AimOscar/src/tlv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/AimOscar/src/tlv.cpp b/protocols/AimOscar/src/tlv.cpp index f458a28eb0..657e6af1a6 100644 --- a/protocols/AimOscar/src/tlv.cpp +++ b/protocols/AimOscar/src/tlv.cpp @@ -36,7 +36,7 @@ TLV::TLV(unsigned short type, unsigned short length, const char* value) {
type_ = type;
length_ = length;
- if(length_ > 0)
+ if (length_ > 0)
{
value_ = (char*)mir_alloc(length_+1);
memcpy(value_, value, length_);
|