mirror of
https://github.com/pbatard/rufus.git
synced 2025-05-21 10:25:12 -04:00
[misc] fix multiple warnings
* Fix Visual Studio code analysis warnings * Also rename VS targets to x86_32 and x86_64
This commit is contained in:
parent
eb9e5ab899
commit
f965c5cd23
18 changed files with 158 additions and 128 deletions
|
@ -261,7 +261,7 @@ unpack_Z_stream(transformer_state_t *xstate)
|
|||
{
|
||||
int i;
|
||||
|
||||
i = de_stack - stackp;
|
||||
i = (int)(de_stack - stackp);
|
||||
if (outpos + i >= OBUFSIZ) {
|
||||
do {
|
||||
if (i > OBUFSIZ - outpos) {
|
||||
|
@ -279,7 +279,7 @@ unpack_Z_stream(transformer_state_t *xstate)
|
|||
outpos = 0;
|
||||
}
|
||||
stackp += i;
|
||||
i = de_stack - stackp;
|
||||
i = (int)(de_stack - stackp);
|
||||
} while (i > 0);
|
||||
} else {
|
||||
memcpy(outbuf + outpos, stackp, i);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue