do not print uninitialized stuff
authorMatthias Braun <matze@braunis.de>
Sat, 31 May 2008 07:53:25 +0000 (07:53 +0000)
committerMatthias Braun <matze@braunis.de>
Sat, 31 May 2008 07:53:25 +0000 (07:53 +0000)
[r19876]

parsetest/shouldpass/fewparams.c

index 435915e..1d6b372 100644 (file)
@@ -9,7 +9,6 @@ static void kaputt(void) {
 static void foo(int a, int b) {
        (void) a;
        (void) b;
-       printf("%d %d\n", a, b);
 }
 
 int main(void) {