summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;
}