X-Git-Url: https://scm.lunaixsky.com/lunaix-os.git/blobdiff_plain/e6dbd781772925dfc07b2facfa0a1350e756ad8f..b632f535c4a6882bdca0317fb88cbe6e165f24eb:/lunaix-os/kernel/ds/hstr.c diff --git a/lunaix-os/kernel/ds/hstr.c b/lunaix-os/kernel/ds/hstr.c index 6c043f3..4e64855 100644 --- a/lunaix-os/kernel/ds/hstr.c +++ b/lunaix-os/kernel/ds/hstr.c @@ -4,7 +4,7 @@ void hstrcpy(struct hstr* dest, struct hstr* src) { - strcpy(dest->value, src->value); + strcpy((char*)dest->value, src->value); dest->hash = src->hash; dest->len = src->len; } \ No newline at end of file