*** empty log message ***

git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk@1013 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
Dave Beazley 2001-02-02 17:17:04 +00:00
commit a94d4c21c0
8 changed files with 168 additions and 104 deletions

View file

@ -107,7 +107,7 @@ wad_segment_find(void *vaddr) {
* ----------------------------------------------------------------------------- */
int wad_segment_valid(void *vaddr) {
return wad_segment_find ? 1 : 0;
return wad_segment_find(vaddr) ? 1 : 0;
}