From: Nathael Pajani Date: Tue, 27 Sep 2016 22:13:47 +0000 (+0200) Subject: Fix compilation warning X-Git-Url: http://git.techno-innov.fr/?a=commitdiff_plain;h=8d0813d995bcddac8f636ede1bc3ade80013d870;p=soft%2Flpc82x%2Fcore Fix compilation warning --- diff --git a/lib/stdlib.c b/lib/stdlib.c index c37dd56..c0a1991 100644 --- a/lib/stdlib.c +++ b/lib/stdlib.c @@ -48,7 +48,7 @@ uint32_t strtoul(const char* str, char** end, uint8_t base) break; } if (end != NULL) { - *end = str; + *end = (char*)str; } return val; }