Fix style

This commit is contained in:
Nate Weibley 2015-10-12 15:26:11 -04:00
parent d7274ac5f0
commit 8a4699c656
1 changed files with 2 additions and 1 deletions

View File

@ -1049,9 +1049,10 @@ uint32_t param_hash_check(void)
if (!param_used(param)) {
continue;
}
const char *name = param_name(param);
const void *val = param_get_value_ptr(param);
param_hash = crc32part((const uint8_t*)name, strlen(name), param_hash);
param_hash = crc32part((const uint8_t *)name, strlen(name), param_hash);
param_hash = crc32part(val, sizeof(union param_value_u), param_hash);
}