Make minidump-2-core.cc build with -Wformat.

A=thakis@chromium.org
BUG=chromium:574817
Original Review: https://codereview.chromium.org/1562983002/

R=thakis@chromium.org

Review URL: https://codereview.chromium.org/1563043002 .
This commit is contained in:
Lei Zhang 2016-01-06 14:17:16 -08:00
parent f9b60452e1
commit ee4d8ffed4
2 changed files with 7 additions and 1 deletions

View file

@ -40,6 +40,12 @@
#ifndef GOOGLE_BREAKPAD_COMMON_BREAKPAD_TYPES_H__ #ifndef GOOGLE_BREAKPAD_COMMON_BREAKPAD_TYPES_H__
#define GOOGLE_BREAKPAD_COMMON_BREAKPAD_TYPES_H__ #define GOOGLE_BREAKPAD_COMMON_BREAKPAD_TYPES_H__
#if (defined(_INTTYPES_H) || defined(_INTTYPES_H_)) && \
!defined(__STDC_FORMAT_MACROS)
#error "inttypes.h has already been included before this header file, but "
#error "without __STDC_FORMAT_MACROS defined."
#endif
#ifndef __STDC_FORMAT_MACROS #ifndef __STDC_FORMAT_MACROS
#define __STDC_FORMAT_MACROS #define __STDC_FORMAT_MACROS
#endif /* __STDC_FORMAT_MACROS */ #endif /* __STDC_FORMAT_MACROS */

View file

@ -35,7 +35,6 @@
#include <elf.h> #include <elf.h>
#include <errno.h> #include <errno.h>
#include <inttypes.h>
#include <link.h> #include <link.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
@ -50,6 +49,7 @@
#include "common/linux/memory_mapped_file.h" #include "common/linux/memory_mapped_file.h"
#include "common/minidump_type_helper.h" #include "common/minidump_type_helper.h"
#include "common/scoped_ptr.h" #include "common/scoped_ptr.h"
#include "google_breakpad/common/breakpad_types.h"
#include "google_breakpad/common/minidump_format.h" #include "google_breakpad/common/minidump_format.h"
#include "third_party/lss/linux_syscall_support.h" #include "third_party/lss/linux_syscall_support.h"
#include "tools/linux/md2core/minidump_memory_range.h" #include "tools/linux/md2core/minidump_memory_range.h"