diff --git a/modules/system/system.archiver.inc b/modules/system/system.archiver.inc
index 9972bfc22da95160eebe0993e41bdbe3f8ffc73b..cd9c9f48c445f1757228605bdb72127413cf6422 100644
--- a/modules/system/system.archiver.inc
+++ b/modules/system/system.archiver.inc
@@ -28,7 +28,7 @@ public function add($file_path) {
     return $this;
   }
 
-  public function remove($path) {
+  public function remove($file_path) {
     // @todo Archive_Tar doesn't have a remove operation
     // so we'll have to simulate it somehow, probably by
     // creating a new archive with everything but the removed
@@ -99,7 +99,7 @@ public function add($file_path) {
     return $this;
   }
 
-  public function remove($path) {
+  public function remove($file_path) {
     $this->zip->deleteName($file_path);
 
     return $this;