summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSiva Velusamy <vsiva@google.com>2012-03-12 18:39:57 -0700
committerSiva Velusamy <vsiva@google.com>2012-03-12 18:39:57 -0700
commit99cefef224f4ceaa1130adce86b74f9a50f6766d (patch)
tree390cd06e59e619f2a377c248236f421c8fd2aac9
parent7fdcdd1d4693cfcc72411afe803e987347be364f (diff)
downloadextras-99cefef224f4ceaa1130adce86b74f9a50f6766d.tar.gz
Fix # of arguments to startActivity
Change-Id: I376864150349862e9dcb3b964aa316559c904a4a
-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 41a550a3..ac4fc327 100644
--- a/bugmailer/src/com/android/commands/sendbug/SendBug.java
+++ b/bugmailer/src/com/android/commands/sendbug/SendBug.java
@@ -72,7 +72,7 @@ public class SendBug {
final IActivityManager mAm = ActivityManagerNative.getDefault();
try {
mAm.startActivity(null, intent, intent.getType(), null, 0, null, null, 0, false,
- false, null, null, false);
+ false, false, null, null, false);
} catch (RemoteException e) {
// ignore
}