1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-25 01:05:37 +00:00

[dom] cast to char *

This commit is contained in:
Witold Filipczyk 2022-01-20 18:42:03 +01:00
parent 2fa67c5730
commit 4849e7e16b

View File

@ -20,10 +20,10 @@ struct dom_string {
};
#define INIT_DOM_STRING(strvalue, strlength) \
{ (strlength), (strvalue) }
{ (strlength), (char *)(strvalue) }
#define STATIC_DOM_STRING(strvalue) \
{ sizeof(strvalue) - 1, (strvalue) }
{ sizeof(strvalue) - 1, (char *)(strvalue) }
static inline void
set_dom_string(struct dom_string *string, char *value, size_t length)