... but reality called in and gcc added printf format checks as a gcc
extension and even modifies the code to make it safe when the user gets
it "wrong".
why? Because vararg is a dangerous concept as specified and strong but
meaningful type checking should be enforced across such places. And our
goal is to build better software and avoid bugs that can be avoided, not
to follow standards where they are _stupid_.
sure. I dont actually care that much how it's solved - via extending the
concept of varargs or via working it around where it hurts most. What
matters is that the current situation is suboptimal. The present
"solution" uglifies the code and more ugly code is always more
dangerous.
But it's even worse: bogus warnings also reduce the psychological
threshold to adding stupid casts - if you have to add casts in a printk
that looks senseless then why not circumvent _other_ warnings that look
senseless?
Excessive false positives are actively harmful to software quality
because they teach people to ignore warnings.
Ingo
--