diff options
author | ivan.penkov@gmail.com <ivan.penkov@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-08-06 23:30:37 +0000 |
---|---|---|
committer | ivan.penkov@gmail.com <ivan.penkov@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-08-06 23:30:37 +0000 |
commit | 5ad99ac174984923379f119a82cf7aab6d87a3a5 (patch) | |
tree | 27e6ecad7d16a4c54192cfa92568ff39962389d0 /src | |
parent | Conditionally compiling a unittest - based on whether AddressSanitizer is used. (diff) | |
download | breakpad-5ad99ac174984923379f119a82cf7aab6d87a3a5.tar.xz |
Prepending file names with "src/" in #include directives is undesirable.
Committed: http://breakpad.appspot.com/427003/
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1005 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src')
-rw-r--r-- | src/common/linux/linux_libc_support.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/linux/linux_libc_support.cc b/src/common/linux/linux_libc_support.cc index 9bf5b02e..39e2aa1e 100644 --- a/src/common/linux/linux_libc_support.cc +++ b/src/common/linux/linux_libc_support.cc @@ -31,7 +31,7 @@ // we call the libc functions directly we risk crashing in the dynamic linker // as it tries to resolve uncached PLT entries. -#include "src/common/linux/linux_libc_support.h" +#include "common/linux/linux_libc_support.h" #include <stddef.h> |