mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-14 07:02:57 +00:00
Use stdint types everywhere
R=mark at https://breakpad.appspot.com/535002/ git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1121 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
@@ -2326,14 +2326,14 @@ struct ELFSectionHeader {
|
||||
alignment(1), entry_size(0) { }
|
||||
Label name;
|
||||
unsigned int type;
|
||||
u_int64_t flags;
|
||||
u_int64_t address;
|
||||
uint64_t flags;
|
||||
uint64_t address;
|
||||
Label file_offset;
|
||||
Label file_size;
|
||||
unsigned int link;
|
||||
unsigned int info;
|
||||
u_int64_t alignment;
|
||||
u_int64_t entry_size;
|
||||
uint64_t alignment;
|
||||
uint64_t entry_size;
|
||||
};
|
||||
|
||||
void AppendSectionHeader(CFISection *table, const ELFSectionHeader &header) {
|
||||
|
||||
Reference in New Issue
Block a user