From ac77e1f4e40479ee7018f10dd070d5a6d5f4cfec Mon Sep 17 00:00:00 2001 From: Jeff Sharkey Date: Fri, 25 Jul 2014 09:58:25 -0700 Subject: [PATCH] Follow refactoring of install-abandon command. Bug: 16543552 Change-Id: I1f54254813fd7d7f4341b8815f816535a39de079 --- adb/commandline.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/adb/commandline.c b/adb/commandline.c index 96ea8c62b..e1ff856ee 100644 --- a/adb/commandline.c +++ b/adb/commandline.c @@ -2041,11 +2041,11 @@ int install_multiple_app(transport_type transport, char* serial, int argc, char* } finalize_session: - // Commit session if we streamed everything okay; otherwise destroy + // Commit session if we streamed everything okay; otherwise abandon if (success) { snprintf(buf, sizeof(buf), "exec:pm install-commit %d", session_id); } else { - snprintf(buf, sizeof(buf), "exec:pm install-destroy %d", session_id); + snprintf(buf, sizeof(buf), "exec:pm install-abandon %d", session_id); } fd = adb_connect(buf);