Add missing braces.

Found by:	PVS-Studio
Approved by:	so (implicit)
This commit is contained in:
Gleb Smirnoff 2016-02-17 21:09:19 +00:00
parent 830cd4b810
commit 9389e53fd4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=295718

View File

@ -131,9 +131,10 @@ nehemiah_modevent(module_t mod, int type, void *unused)
break;
case MOD_UNLOAD:
if (via_feature_rng & VIA_HAS_RNG)
if (via_feature_rng & VIA_HAS_RNG) {
random_nehemiah_deinit();
random_source_deregister(&random_nehemiah);
}
break;
case MOD_SHUTDOWN: