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

ut_process: add ; after DEBUG()

This commit is contained in:
Benjamin Valentin 2021-12-09 11:20:44 +01:00
parent 4b9bdc61b2
commit 624fd7672f

View File

@ -306,7 +306,7 @@ static int _set_var(const char *var, size_t var_len,
char prefix = '\0', sep = '\0';
if ((var == NULL) || (var_len == 0)) {
DEBUG("ut_process: zero-length variable found\n")
DEBUG("ut_process: zero-length variable found\n");
return -EINVAL;
}
value = _find_var(var, var_len, vars, vars_len);