Browse Source

mode_t should be an unsigned_int

PHP-4.0.5
Zeev Suraski 26 years ago
parent
commit
8aecb3c984
  1. 2
      TSRM/tsrm_virtual_cwd.h

2
TSRM/tsrm_virtual_cwd.h

@ -44,7 +44,7 @@
#include "readdir.h"
#include <sys/utime.h>
/* mode_t isn't defined on Windows */
typedef int mode_t;
typedef unsigned short mode_t;
#define DEFAULT_SLASH '\\'
#define IS_SLASH(c) ((c) == '/' || (c) == '\\')

Loading…
Cancel
Save