aboutsummaryrefslogtreecommitdiff
path: root/src/client/mac/sender/uploader.mm
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-01-26 19:05:31 +0000
committermark@chromium.org <mark@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e>2012-01-26 19:05:31 +0000
commit1197f761a42798cb66426ef444c7f0e4f699a4f6 (patch)
treebf3a49f0b2b03d0f83aa23a5789e6229d13892cb /src/client/mac/sender/uploader.mm
parentUse sys_prctl instead of prctl. (diff)
downloadbreakpad-1197f761a42798cb66426ef444c7f0e4f699a4f6.tar.xz
Fix several clang warnings in breakpad.
uploader.mm:549:5: warning: instance method '-uploadData:name:url:' not found (return type defaults to 'id') [self uploadData:logFileData_ name:@"log" url:url]; => it looks like this method does in fact not exist, the last parameter needs to be removed. breakpad_nlist_64.cc:193:59: warning: '&&' within '||' [-Wlogical-op-parentheses] => Just add parentheses, no functionality change. Patch by Nico Weber <thakis@chromium.org> BUG=none TEST=breakpad stil works. git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@907 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'src/client/mac/sender/uploader.mm')
-rw-r--r--src/client/mac/sender/uploader.mm2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/mac/sender/uploader.mm b/src/client/mac/sender/uploader.mm
index 7f4b2d3c..7298ed42 100644
--- a/src/client/mac/sender/uploader.mm
+++ b/src/client/mac/sender/uploader.mm
@@ -546,7 +546,7 @@ NSDictionary *readConfigurationData(const char *configFile) {
}
if (logFileData_) {
- [self uploadData:logFileData_ name:@"log" url:url];
+ [self uploadData:logFileData_ name:@"log"];
}
[upload release];