Diff for /np2/common/arc.c between versions 1.1 and 1.2

version 1.1, 2006/12/10 12:45:46 version 1.2, 2007/01/08 08:52:21
Line 228  const OEMCHAR *p; Line 228  const OEMCHAR *p;
         if (p == NULL) {          if (p == NULL) {
                 return(plainfile_regist(file_open(fname)));                  return(plainfile_regist(file_open(fname)));
         }          }
         len = p - fname;          len = (UINT)(p - fname);
         if (len >= NELEMENTS(path)) {          if (len >= NELEMENTS(path)) {
                 return(NULL);                  return(NULL);
         }          }
Line 263  const OEMCHAR *p; Line 263  const OEMCHAR *p;
         if (p == NULL) {          if (p == NULL) {
                 return(file_attr(fname));                  return(file_attr(fname));
         }          }
         len = p - fname;          len = (UINT)(p - fname);
         if (len >= NELEMENTS(path)) {          if (len >= NELEMENTS(path)) {
                 return(-1);                  return(-1);
         }          }

Removed from v.1.1  
changed lines
  Added in v.1.2


RetroPC.NET-CVS <cvs@retropc.net>