diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-08-21 08:09:06 -0700 |
---|---|---|
committer | android code review <noreply-gerritcodereview@google.com> | 2012-08-21 08:09:07 -0700 |
commit | 02fd29246ab54ee4a0f8fa6358498070e54e5fd0 (patch) | |
tree | 21cb39b754b09bc6ed0779bd883ad75522c15218 | |
parent | c6620cb3a37e98ceb89f5d11305038786af76650 (diff) | |
parent | 62188564fab23418373295d9f4a942c3094a9f46 (diff) | |
download | system_core-02fd29246ab54ee4a0f8fa6358498070e54e5fd0.zip system_core-02fd29246ab54ee4a0f8fa6358498070e54e5fd0.tar.gz system_core-02fd29246ab54ee4a0f8fa6358498070e54e5fd0.tar.bz2 |
Merge "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;
|