mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 04:46:55 +03:00
Made an integer literal compatible to the variable it is compared with.
This commit is contained in:
parent
7adbbafc6a
commit
c673ebfc89
@ -123,7 +123,7 @@ info_show_info (struct WInfo *info)
|
||||
case 14:
|
||||
widget_move (&info->widget, 14, 3);
|
||||
printw (_("Type: %s "), myfs_stats.typename ? myfs_stats.typename : _("non-local vfs"));
|
||||
if (myfs_stats.type != 0xffff && myfs_stats.type != 0xffffffff)
|
||||
if (myfs_stats.type != 0xffff && myfs_stats.type != -1)
|
||||
printw (" (%Xh)", myfs_stats.type);
|
||||
|
||||
case 13:
|
||||
|
Loading…
Reference in New Issue
Block a user