mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-11 09:50:12 +00:00
Remove always false comparison.
Sponsored by: Nginx, Inc.
This commit is contained in:
parent
62b7f85d47
commit
6b17688b56
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=271013
@ -193,7 +193,7 @@ static int drm_vm_info DRM_SYSCTL_HANDLER_ARGS
|
||||
for (i = 0; i < mapcount; i++) {
|
||||
map = &tempmaps[i];
|
||||
|
||||
if (map->type < 0 || map->type > 4)
|
||||
if (map->type > 4)
|
||||
type = "??";
|
||||
else
|
||||
type = types[map->type];
|
||||
|
Loading…
Reference in New Issue
Block a user