Enable more compiler warnings and treat them as errors.

This commit is contained in:
Brian Phlipot
2023-02-02 11:54:17 -08:00
committed by teejusb
parent f8f6f12999
commit 4a6b1a743c
141 changed files with 625 additions and 757 deletions
+4 -1
View File
@@ -27,10 +27,13 @@ struct my_jpeg_error_mgr
{
struct jpeg_error_mgr pub; /* "public" fields */
uint8_t pad1[8]; // Explicitly add padding that's implicitly added by the compiler
jmp_buf setjmp_buffer; /* for return to caller */
char errorbuf[JMSG_LENGTH_MAX];
};
uint8_t pad2[8]; // Explicitly add padding that's implicitly added by the compiler
};
void my_output_message( j_common_ptr cinfo )
{