The current implementation in clang means we will likely have to disable -Wformat-overflow for this reason, which is a shame. Currently, clang only sees the format string when they calculate the minimum length of the formatted result. We should also make use of the information of their argumen...
format '%s' expects argument of type 'char *', but argument 3 has type 'int' [-Wformat] I have the following structs:PList:typedef struct PList{ Person person; struct PList *nextPerson; // set to NULL by default <<< }PList; Person:typedef...