error: too many arguments in call to 'pr_dummy' [-Werror]

Change-Id: Ib03b6d3af9909c971245314bbde2085d8c3c73b2
This commit is contained in:
Stephan Bergmann 2013-04-24 22:51:26 +02:00
parent 29dcdf6b56
commit 6681432e39

View File

@ -96,7 +96,7 @@ void recursive_pr_dummy(head, file)
return;
head->i_marked = 2; // it's a large boolean...
if (head->i_file != file)
pr_dummy(head, file);
pr_dummy(head);
for (i=0; i<head->i_listlen; i++)
recursive_pr_dummy(head->i_list[ i ], file);
}