khtml: fix compiler warning about unsigned -> int

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2015-11-10 02:01:49 +02:00
parent d7678b6e94
commit d96892c084

View file

@ -85,7 +85,7 @@ DOMStringImpl* AtomicString::add(const char* c)
struct UCharBuffer {
const QChar* s;
unsigned length;
int length;
};
static inline bool equal(DOMStringImpl* string, const QChar* characters, unsigned length)