Fix gcc warning about an uninitialized bool in sys/x86/iommu/intel_drv.c.

Reviewed by:	kib
This commit is contained in:
Dimitry Andric 2013-11-09 22:05:29 +00:00
parent d291234c33
commit f7f5706f28
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=257903

View File

@ -1049,6 +1049,8 @@ DB_FUNC(dmar_ctx, db_dmar_print_ctx, db_show_table, CS_OWN, NULL)
}
show_mappings = strchr(db_tok_string, 'm') != NULL;
t = db_read_token();
} else {
show_mappings = false;
}
if (t == tNUMBER) {
domain = db_tok_number;