summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmith Yamasani <yamasani@google.com>2012-03-20 13:25:09 -0700
committerAmith Yamasani <yamasani@google.com>2012-03-20 13:25:09 -0700
commitf591abb39f0634094909af6684a874341fb4f0a4 (patch)
tree764f998d2f8a3b63bc432b6c682e2c73cb19994c
parent9be0392602b5458b79ff2024588a197f20c643dd (diff)
downloadextras-f591abb39f0634094909af6684a874341fb4f0a4.tar.gz
Pass extra parameter for user id.
Change-Id: I2c2ed833946e18aeabbd7e0a7cb3e515a0d95d4e
-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;
}