Fix build warnings (without -Wall).
This commit is contained in:
parent
d70d390732
commit
dc83dd6422
9 changed files with 29 additions and 22 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue