mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-21 03:55:06 +00:00
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> Signed-off-by: maurerr <mariusd84@gmail.com>
This commit is contained in:
parent
217ca16d77
commit
8924bd140c
@ -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]);
|
||||
|
@ -187,7 +187,6 @@ int main(int argc, char *argv[])
|
||||
|
||||
res = EXIT_SUCCESS;
|
||||
|
||||
out_flush:
|
||||
fflush(outfile);
|
||||
|
||||
err_close_out:
|
||||
|
@ -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;
|
||||
|
@ -247,7 +247,6 @@ int main(int argc, char *argv[])
|
||||
|
||||
res = EXIT_SUCCESS;
|
||||
|
||||
out_flush:
|
||||
fflush(outfile);
|
||||
|
||||
err_close_out:
|
||||
|
@ -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
|
||||
|
@ -163,7 +163,6 @@ int main(int argc, char *argv[])
|
||||
|
||||
res = EXIT_SUCCESS;
|
||||
|
||||
out_flush:
|
||||
fflush(outfile);
|
||||
|
||||
err_close_out:
|
||||
|
@ -339,7 +339,6 @@ int main(int argc, char *argv[])
|
||||
|
||||
res = EXIT_SUCCESS;
|
||||
|
||||
out_flush:
|
||||
fflush(outfile);
|
||||
|
||||
err_close_out:
|
||||
|
Loading…
Reference in New Issue
Block a user