Merge remote-tracking branch 'qubesos/pr/26'
* qubesos/pr/26: This commit specifies the integer width explicitly to match `result_header_ext` etc.
This commit is contained in:
commit
75fa0d3cb0
@ -35,13 +35,13 @@
|
|||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
|
|
||||||
struct file_header {
|
struct file_header {
|
||||||
unsigned int namelen;
|
uint32_t namelen;
|
||||||
unsigned int mode;
|
uint32_t mode;
|
||||||
unsigned long long filelen;
|
uint64_t filelen;
|
||||||
unsigned int atime;
|
uint32_t atime;
|
||||||
unsigned int atime_nsec;
|
uint32_t atime_nsec;
|
||||||
unsigned int mtime;
|
uint32_t mtime;
|
||||||
unsigned int mtime_nsec;
|
uint32_t mtime_nsec;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct result_header {
|
struct result_header {
|
||||||
|
Loading…
Reference in New Issue
Block a user