mirror of
https://github.com/opnsense/src.git
synced 2026-02-16 17:19:56 -05:00
With clang 15, the following -Werror warnings is produced:
sys/dev/fb/fbd.c:205:9: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes]
fbd_list()
^
void
This is because fbd_list() is declared with a (void) argument list, but
defined with an empty argument list. Make the definition match the
declaration.
MFC after: 3 days
|
||
|---|---|---|
| .. | ||
| fb.c | ||
| fb_if.m | ||
| fbd.c | ||
| fbreg.h | ||
| s3_pci.c | ||
| splash.c | ||
| splash_bmp.c | ||
| splash_pcx.c | ||
| splash_txt.c | ||
| splashreg.h | ||
| vesa.c | ||
| vesa.h | ||
| vga.c | ||
| vgareg.h | ||