upas/fs: avoid switch on vlong breaking build (thanks k0ga)
This commit is contained in:
parent
3484b7c23a
commit
243c25fd8f
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@ enum {
|
|||
};
|
||||
|
||||
#define PATH(id, f) (((uvlong)(id)<<10) | (f))
|
||||
#define FILE(p) ((p) & 0x3ff)
|
||||
#define FILE(p) ((int) (p) & 0x3ff)
|
||||
|
||||
/* hash table to aid in name lookup, all files have an entry */
|
||||
typedef struct Hash Hash;
|
||||
|
|
Loading…
Reference in a new issue