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:
Marek Marczykowski-Górecki 2017-11-20 13:56:55 +01:00
commit 75fa0d3cb0
No known key found for this signature in database
GPG Key ID: 063938BA42CFA724

View File

@ -35,13 +35,13 @@
#include <sys/types.h>
struct file_header {
unsigned int namelen;
unsigned int mode;
unsigned long long filelen;
unsigned int atime;
unsigned int atime_nsec;
unsigned int mtime;
unsigned int mtime_nsec;
uint32_t namelen;
uint32_t mode;
uint64_t filelen;
uint32_t atime;
uint32_t atime_nsec;
uint32_t mtime;
uint32_t mtime_nsec;
};
struct result_header {