diff options
author | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-09-17 14:00:36 +0000 |
---|---|---|
committer | ted.mielczarek@gmail.com <ted.mielczarek@gmail.com@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2012-09-17 14:00:36 +0000 |
commit | a8e7e186564ddc78eaf375310a8fc1e62b9da8b0 (patch) | |
tree | dce6f6af15f3771ec451fcee9e04c105dc600c81 /src | |
parent | Fix processor to build with clang (diff) | |
download | breakpad-a8e7e186564ddc78eaf375310a8fc1e62b9da8b0.tar.xz |
Fix compilation of crash_generation_server.cc, and add it to the client library sources so it actually gets built.
R=mark at https://breakpad.appspot.com/446003/
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1036 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src')
-rw-r--r-- | src/client/linux/crash_generation/crash_generation_server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/linux/crash_generation/crash_generation_server.cc b/src/client/linux/crash_generation/crash_generation_server.cc index f7e72447..c5c59743 100644 --- a/src/client/linux/crash_generation/crash_generation_server.cc +++ b/src/client/linux/crash_generation/crash_generation_server.cc @@ -81,7 +81,7 @@ GetInodeForProcPath(ino_t* inode_out, const char* path) assert(path); char buf[PATH_MAX]; - if (!SafeReadLink(path, buf)) { + if (!google_breakpad::SafeReadLink(path, buf)) { return false; } |