diff --git a/taglib/asf/asfattribute.cpp b/taglib/asf/asfattribute.cpp index ec909fe8..6faf7973 100644 --- a/taglib/asf/asfattribute.cpp +++ b/taglib/asf/asfattribute.cpp @@ -281,10 +281,10 @@ ByteVector ASF::Attribute::render(const String &name, int kind) const case BoolType: if(kind == 0) { - data.append(ByteVector::fromUInt(toBool())); + data.append(ByteVector::fromUInt(toBool(), false)); } else { - data.append(ByteVector::fromShort(toBool())); + data.append(ByteVector::fromShort(toBool(), false)); } break;