(show_point): Cast -2 to dev_t before assignment.

This commit is contained in:
Jim Meyering
1995-10-05 14:12:29 +00:00
parent 1c7bc6028a
commit e387fd1471
+2 -1
View File
@@ -346,7 +346,8 @@ show_point (point, statp)
{
error (0, errno, "%s", me->me_mountdir);
exit_status = 1;
me->me_dev = -2; /* So we won't try and fail repeatedly. */
/* So we won't try and fail repeatedly. */
me->me_dev = (dev_t) -2;
}
}