am 84e533d7: am 228f8261: Merge "delete_file() should force removal." into lmp-dev
* commit '84e533d7b06de2dfd2a40b577ef22877e0e499af':
delete_file() should force removal.
diff --git a/adb/commandline.c b/adb/commandline.c
index b268ca5..51c039e 100644
--- a/adb/commandline.c
+++ b/adb/commandline.c
@@ -1870,7 +1870,7 @@
char buf[4096];
char* quoted;
- snprintf(buf, sizeof(buf), "shell:rm ");
+ snprintf(buf, sizeof(buf), "shell:rm -f ");
quoted = escape_arg(filename);
strncat(buf, quoted, sizeof(buf)-1);
free(quoted);