1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-28 01:35:32 +00:00

DOM: Change struct dom_string length member from size_t to unsigned int

Requested-by: Miciah
This commit is contained in:
Jonas Fonseca 2006-02-10 01:25:48 +01:00 committed by Jonas Fonseca
parent 6fe1a431f1
commit 1b4bee7a82

View File

@ -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;
};