upas/fs: avoid switch on vlong breaking build (thanks k0ga)

This commit is contained in:
cinap_lenrek 2018-11-26 21:36:51 +01:00
parent 3484b7c23a
commit 243c25fd8f

View file

@ -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;