mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2025-02-05 18:45:49 +01:00
284f6c63ca
If you have... void myfunc(char buf[16]) { printf("%d\n", (int) sizeof (buf)); } ...this will print sizeof (char *) instead of 16, so this fixes a piece of code that assumed the latter instead of the former.