Hello! At the recent version of the code, I found the weird use of `const static const struct ....` which caused the compiler warning. SDL_blit_N.c, line 131; ```c const static const struct SDL_PixelFormat default_pixel_format = { ``` Do you want to write the `static const struct SDL_PixelFormat default_pixel_format` or ` const static struct SDL_PixelFormat default_pixel_format`? P.S. https://stackoverflow.com/questions/12005959/static-const-vs-const-static :thinking: