dbghelp: Remove a superfluous TRUE:FALSE conditional expression.

This commit is contained in:
Michael Stefaniuc 2012-08-14 23:08:03 +02:00 committed by Alexandre Julliard
parent 25b0efa5bb
commit 31fdb97632
1 changed files with 1 additions and 1 deletions

View File

@ -206,7 +206,7 @@ struct module* module_new(struct process* pcs, const WCHAR* name,
module->reloc_delta = 0;
module->type = type;
module->is_virtual = virtual ? TRUE : FALSE;
module->is_virtual = virtual;
for (i = 0; i < DFI_LAST; i++) module->format_info[i] = NULL;
module->sortlist_valid = FALSE;
module->sorttab_size = 0;