From 1b4bee7a82f774cc01699817e5efcebc095540e2 Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Fri, 10 Feb 2006 01:25:48 +0100 Subject: [PATCH] DOM: Change struct dom_string length member from size_t to unsigned int Requested-by: Miciah --- src/dom/string.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dom/string.h b/src/dom/string.h index 4e04e9d8..830d7701 100644 --- a/src/dom/string.h +++ b/src/dom/string.h @@ -10,7 +10,7 @@ * and it needs to be possible to adapt the string library to that. --jonas */ struct dom_string { - size_t length; + unsigned int length; unsigned char *string; };