diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-08-21 09:12:13 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2012-08-21 09:12:13 -0700 |
commit | 6302b420554724c1434e27e2cd46cb43f5fb7bca (patch) | |
tree | 9708c4cabf0995ae461307fc5e65c5b8fb2426c6 | |
parent | a4ad73480896c6bc7960331dcfca87a358cc5782 (diff) | |
parent | 487d6d3db3f504b0120fc605ad3a4155ca214674 (diff) | |
download | system_core-6302b420554724c1434e27e2cd46cb43f5fb7bca.zip system_core-6302b420554724c1434e27e2cd46cb43f5fb7bca.tar.gz system_core-6302b420554724c1434e27e2cd46cb43f5fb7bca.tar.bz2 |
am 487d6d3d: am 02fd2924: Merge "Fixed warnings test_zipfile"
* commit '487d6d3db3f504b0120fc605ad3a4155ca214674':
Fixed warnings test_zipfile
-rw-r--r-- | libzipfile/test_zipfile.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libzipfile/test_zipfile.c b/libzipfile/test_zipfile.c index 40840ec..1aaa913 100644 --- a/libzipfile/test_zipfile.c +++ b/libzipfile/test_zipfile.c @@ -1,5 +1,5 @@ #include <zipfile/zipfile.h>
-
+#include <string.h>
#include <stdio.h>
#include <stdlib.h>
@@ -55,6 +55,8 @@ main(int argc, char** argv) switch (what)
{
+ case HUH:
+ break;
case LIST:
dump_zipfile(stdout, zip);
break;
|