1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/fmt: remove useless assignment

This commit is contained in:
Toon Stegen 2018-08-02 12:16:20 +02:00
parent 9f90f31291
commit 3a69e0fa98

View File

@ -142,7 +142,6 @@ size_t fmt_hex_bytes(uint8_t *out, const char *hex)
size_t len = fmt_strlen(hex);
if (len & 1) {
out = NULL;
return 0;
}