Fix build warnings (without -Wall).

This commit is contained in:
Robert Millan 2009-11-08 22:54:27 +00:00
parent d70d390732
commit dc83dd6422
9 changed files with 29 additions and 22 deletions

View file

@ -98,7 +98,7 @@ char * fn;
int i_ishidden()
{
return((int)i_mat[0]);
return (i_mat[0] != NULL);
}
/* Joliet hide */
@ -142,6 +142,6 @@ char * fn;
int j_ishidden()
{
return((int)j_mat[0]);
return (j_mat[0] != NULL);
}