Browse Source

express: Fix issue on platforms without signed cha

rdb 4 years ago
parent
commit
c977df33a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      panda/src/express/virtualFileSystem.cxx

+ 1 - 1
panda/src/express/virtualFileSystem.cxx

@@ -156,7 +156,7 @@ mount(const Filename &physical_filename, const Filename &mount_point,
   // read-write on multifiles and .zip files.
   flags |= MF_read_only;
 
-  char ch = stream->get();
+  int ch = stream->get();
   if (ch == '#' || ch == 'p') {
     // It *might* be a multifile.
     while (ch == '#') {