firmware-utils: fix few random warnings

1. -Wunused-label
2. -Wparentheses
3. -Wmisleading-indentation
4. -Wformat-overflow

Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
This commit is contained in:
Rafał Miłecki 2021-04-09 08:52:03 +02:00
parent 7c01e2bac1
commit a2f6622945
7 changed files with 3 additions and 7 deletions

View File

@ -104,7 +104,7 @@ int main(int argc, char** argv)
char *endptr, *buffer, *p;
int count; // size of file in bytes
unsigned short sum = 0, sum1 = 0;
char sumbuf[9];
char sumbuf[8 + 8 + 1];
if(argc < 3) {
printf("ERROR: Argument missing!\n\nUsage %s filename starting offset in hex [PID code]\n\n", argv[0]);

View File

@ -187,7 +187,6 @@ int main(int argc, char *argv[])
res = EXIT_SUCCESS;
out_flush:
fflush(outfile);
err_close_out:

View File

@ -98,7 +98,7 @@ struct cpx_board {
#define CPX_BOARD_AR23XX(_did, _flash, _mod, _name, _desc) \
CPX_BOARD(_did, _flash, _mod, _name, _desc, 0x10000, 0x10000)
#define ALIGN(x,y) ((x)+((y)-1)) & ~((y)-1)
#define ALIGN(x,y) (((x)+((y)-1)) & ~((y)-1))
char *progname;
char *ofname = NULL;

View File

@ -247,7 +247,6 @@ int main(int argc, char *argv[])
res = EXIT_SUCCESS;
out_flush:
fflush(outfile);
err_close_out:

View File

@ -284,7 +284,7 @@ int main(int argc, char* argv[], char* env[])
else
padding = align - ((section->raw_size+ section->offset) % align);
section->total_size=section->raw_size + padding;
section->total_size=section->raw_size + padding;
}
else{
#define EXTRA_BLOCK 0x10000

View File

@ -163,7 +163,6 @@ int main(int argc, char *argv[])
res = EXIT_SUCCESS;
out_flush:
fflush(outfile);
err_close_out:

View File

@ -339,7 +339,6 @@ int main(int argc, char *argv[])
res = EXIT_SUCCESS;
out_flush:
fflush(outfile);
err_close_out: