renderer.c:75: warning: initialization makes integer from pointer
without a castrenderer.c:78: warning: initialization makes integer from
pointer without a castrenderer.c:78: warning: initialization from
incompatible pointer type
They're just warnings, but pretty severe. A new field was added to the
struct but these entries didn't get it.
I use
alias make="make CFLAGS=\"-g -Wall -Werror -Wcast-align
-Wmissing-prototypes -Wmissing-declarations\""
which catches problems like this (as well as preventing compilation in a
lot of projects that have many warnings; I use "unalias make" a lot).
jason
|