kernel32: Remove some duplicate code.

Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Ken Thomases 2019-03-06 18:54:58 -06:00 committed by Alexandre Julliard
parent 994976dcb3
commit 4dd5e533b1
1 changed files with 0 additions and 5 deletions

View File

@ -344,11 +344,6 @@ static enum binary_type get_binary_info( HANDLE hfile, pe_image_info_t *info )
case 2: return BINARY_UNIX_EXE;
case 8: return BINARY_UNIX_LIB;
}
switch(header.macho.filetype)
{
case 2: return BINARY_UNIX_EXE;
case 8: return BINARY_UNIX_LIB;
}
}
return BINARY_UNKNOWN;
}