Yet another installment in the ongoing tar saga
 -Erik
diff --git a/coreutils/rm.c b/coreutils/rm.c
index 41afeda..683bf8b 100644
--- a/coreutils/rm.c
+++ b/coreutils/rm.c
@@ -42,7 +42,7 @@
 static const char *srcName;
 
 
-static int fileAction(const char *fileName, struct stat *statbuf)
+static int fileAction(const char *fileName, struct stat *statbuf, void* junk)
 {
 	if (unlink(fileName) < 0) {
 		perror(fileName);
@@ -51,7 +51,7 @@
 	return (TRUE);
 }
 
-static int dirAction(const char *fileName, struct stat *statbuf)
+static int dirAction(const char *fileName, struct stat *statbuf, void* junk)
 {
 	if (rmdir(fileName) < 0) {
 		perror(fileName);
@@ -95,7 +95,7 @@
 			/* do not reports errors for non-existent files if -f, just skip them */
 		} else {
 			if (recursiveAction(srcName, recursiveFlag, FALSE,
-								TRUE, fileAction, dirAction) == FALSE) {
+								TRUE, fileAction, dirAction, NULL) == FALSE) {
 				exit(FALSE);
 			}
 		}