mirror of
https://github.com/ipxe/ipxe
synced 2025-12-17 18:11:49 +03:00
[build] Keep gcc 4.4 happy
gcc 4.4 adds another few warnings, and also seems to complain if we place %ebp in the clobber list for any inline asm.
This commit is contained in:
@@ -188,7 +188,7 @@ static struct io_buffer * ipv4_reassemble ( struct io_buffer * iobuf ) {
|
||||
free_iob ( iobuf );
|
||||
|
||||
/** Check if the fragment series is over */
|
||||
if ( !iphdr->frags & IP_MASK_MOREFRAGS ) {
|
||||
if ( ! ( iphdr->frags & IP_MASK_MOREFRAGS ) ) {
|
||||
iobuf = fragbuf->frag_iob;
|
||||
free_fragbuf ( fragbuf );
|
||||
return iobuf;
|
||||
|
||||
Reference in New Issue
Block a user