From c673ebfc892f4822dffb98c01d3450687ef5dd00 Mon Sep 17 00:00:00 2001 From: Roland Illig Date: Mon, 16 Aug 2004 04:25:41 +0000 Subject: [PATCH] Made an integer literal compatible to the variable it is compared with. --- src/info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/info.c b/src/info.c index 7d367521a..33d0f142c 100644 --- a/src/info.c +++ b/src/info.c @@ -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: