Skip to content

Commit

Permalink
[PATCH] kernel/acct: fix function definition
Browse files Browse the repository at this point in the history
kernel/acct.c:579:19: warning: non-ANSI function declaration of function 'acct_process'

Signed-off-by: Randy Dunlap <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
rddunlap authored and Linus Torvalds committed Jun 28, 2006
1 parent 266bee8 commit 7f32a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kernel/acct.c
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ void acct_collect(long exitcode, int group_dead)
*
* handles process accounting for an exiting task
*/
void acct_process()
void acct_process(void)
{
struct file *file = NULL;

Expand Down

0 comments on commit 7f32a25

Please sign in to comment.