Commit 0feec72e authored by Martin Pool's avatar Martin Pool

DEV64_t and INO64_T should probably be unsigned

parent be8bd99a
......@@ -303,8 +303,8 @@ enum logcode {FNONE=0, FERROR=1, FINFO=2, FLOG=3 };
* cope with platforms on which this is an unsigned int or even a
* struct. Later.
*/
#define INO64_T int64
#define DEV64_T int64
#define INO64_T unsigned int64
#define DEV64_T unsigned int64
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment