Params: Ignore volatile

This commit is contained in:
Lorenz Meier 2018-01-08 17:01:02 +01:00
parent 48af6b6d61
commit 3d9cd5c0bc
1 changed files with 1 additions and 1 deletions

View File

@ -1363,7 +1363,7 @@ uint32_t param_hash_check(void)
/* compute the CRC32 over all string param names and 4 byte values */
for (param_t param = 0; handle_in_range(param); param++) {
if (!param_used(param) && param_is_volatile(param)) {
if (!param_used(param) || param_is_volatile(param)) {
continue;
}