shithub: pokecrystal

Download patch

ref: ca08ffce6ec5441a0bdfdf2ef3770625987d36a7
parent: 6a6ce484d9ec0dc9c6648f60c29ea3ae7d481ef1
author: Rangi <remy.oukaour+rangi42@gmail.com>
date: Sat Aug 18 18:42:46 EDT 2018

Avoid warnings from gcc without having to silence them all

--- a/tools/Makefile
+++ b/tools/Makefile
@@ -20,9 +20,5 @@
 
 gfx md5: common.h
 
-# suppress warnings
-lzcomp: lzcomp.c
-	$(CC) -O3 -o $@ $<
-
 %: %.c
 	$(CC) $(CFLAGS) -o $@ $<
--- a/tools/lzcomp.c
+++ b/tools/lzcomp.c
@@ -18,7 +18,7 @@
 };
 
 int main(int, char **);
-struct options get_options(int, char **);
+struct options get_options(char **);
 void usage(const char *);
 void error_exit(int, const char *, ...);
 void bit_flip(const unsigned char *, unsigned short, unsigned char *);
@@ -43,8 +43,8 @@
 struct command * merge_command_sequences(const struct command *, unsigned short, const struct command *, unsigned short, unsigned short *);
 unsigned short compressed_length(const struct command *, unsigned short);
 
-int main (int argc, char ** argv) {
-  struct options options = get_options(argc, argv);
+int main (int argc __attribute__((unused)), char ** argv) {
+  struct options options = get_options(argv);
   unsigned short size;
   unsigned char * file_buffer = read_file_into_buffer(options.input, &size);
   struct command * compressed = compress(file_buffer, &size);
@@ -57,7 +57,7 @@
   return 0;
 }
 
-struct options get_options (int argc, char ** argv) {
+struct options get_options (char ** argv) {
   struct options result = {.input = NULL, .output = NULL, .mode = 0};
   const char * program_name = *argv;
   for (argv ++; *argv; argv ++) {
@@ -141,7 +141,7 @@
       rv = fprintf(fp, "\tlzrepeat %u, $%02hhx\n", command.count, (unsigned char) command.value);
       break;
     case 2:
-      if ((command.value < 0) || (command.value > 65535)) error_exit(2, "invalid command in output stream");
+      if (command.value < 0) error_exit(2, "invalid command in output stream");
       rv = fprintf(fp, "\tlzrepeat %u, $%02hhx, $%02hhx\n", command.count, (unsigned char) command.value, (unsigned char) (command.value >> 8));
       break;
     case 3:
@@ -204,7 +204,7 @@
         *(pos ++) = command.value;
       }
   }
-  if (fwrite(buf, 1, pos - buf, fp) != (pos - buf)) error_exit(1, "could not write command to compressed output");
+  if (fwrite(buf, 1, pos - buf, fp) != (size_t)(pos - buf)) error_exit(1, "could not write command to compressed output");
   if (command.command) return;
   command.count ++;
   if (fwrite(input_stream + command.value, 1, command.count, fp) != command.count) error_exit(1, "could not write data to compressed output");
@@ -283,11 +283,11 @@
   struct command simple = {.command = 7};
   struct command flipped = simple, backwards = simple;
   short count, offset;
-  if (count = scan_forwards(data + position, length - position, data, position, &offset))
+  if ((count = scan_forwards(data + position, length - position, data, position, &offset)))
     simple = (struct command) {.command = 4, .count = count, .value = offset};
-  if (count = scan_forwards(data + position, length - position, bitflipped, position, &offset))
+  if ((count = scan_forwards(data + position, length - position, bitflipped, position, &offset)))
     flipped = (struct command) {.command = 5, .count = count, .value = offset};
-  if (count = scan_backwards(data, length - position, position, &offset))
+  if ((count = scan_backwards(data, length - position, position, &offset)))
     backwards = (struct command) {.command = 6, .count = count, .value = offset};
   struct command command;
   switch (flags / 24) {
@@ -417,6 +417,7 @@
         break;
       case 1:
         if (commands -> value != next -> value) break;
+        // fall through
       case 3:
         if ((commands -> count + next -> count) <= 1024) {
           commands -> count += next -> count;