summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmith Yamasani <yamasani@google.com>2012-03-22 15:12:05 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-22 15:12:05 -0700
commita26b749a9abb45d3f4b470d4c8b48050bf862791 (patch)
tree764f998d2f8a3b63bc432b6c682e2c73cb19994c
parent2584cc9024f8b2e8afe29516de65f7e101857044 (diff)
parentf591abb39f0634094909af6684a874341fb4f0a4 (diff)
downloadextras-a26b749a9abb45d3f4b470d4c8b48050bf862791.tar.gz
Merge "Pass extra parameter for user id."
-rw-r--r--bugmailer/src/com/android/commands/sendbug/SendBug.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bugmailer/src/com/android/commands/sendbug/SendBug.java b/bugmailer/src/com/android/commands/sendbug/SendBug.java
index c63c3e22..da8788e4 100644
--- a/bugmailer/src/com/android/commands/sendbug/SendBug.java
+++ b/bugmailer/src/com/android/commands/sendbug/SendBug.java
@@ -87,7 +87,7 @@ public class SendBug {
if (mPm != null) {
final List<ResolveInfo> results;
try {
- results = mPm.queryIntentActivities(intent, null, 0);
+ results = mPm.queryIntentActivities(intent, null, 0, 0);
} catch (RemoteException e) {
return null;
}