Browse Source

Fix compile error

rdb 11 years ago
parent
commit
105e26092a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      pandatool/src/objegg/eggToObjConverter.cxx

+ 1 - 1
pandatool/src/objegg/eggToObjConverter.cxx

@@ -153,7 +153,7 @@ process(const Filename &filename) {
 
   write_faces(*file, _egg_data);
 
-  bool success = (void *)(*file) != NULL;
+  bool success = ((void *)(*file) != NULL);
   vfs->close_write_file(file);
 
   return success;