summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-25 22:42:43 +0000
committerallen <allen@17b73243-c579-4c4c-a9d2-2d5706c11dac>2002-04-25 22:42:43 +0000
commit9de602add5ac84b06cb832e92c51c7ea0ca9422c (patch)
treed4379bc4fbf0164bc29a428f209a5a6a9ee317b2 /lib
parente87c7547822a9e80c5f92721e437eda398c6cf48 (diff)
Fixed arguements in subroutine call to print error message
git-svn-id: http://svn.cactuscode.org/flesh/trunk@2755 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib')
-rw-r--r--lib/sbin/ImpParamConsistency.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sbin/ImpParamConsistency.pl b/lib/sbin/ImpParamConsistency.pl
index 78fbe5be..4cce10b4 100644
--- a/lib/sbin/ImpParamConsistency.pl
+++ b/lib/sbin/ImpParamConsistency.pl
@@ -74,13 +74,13 @@ sub CheckImpParamConsistency
else
{
$message = "Thorn $thorn attempted to EXTEND or USE non-restricted parameter $parameter from $friend";
- &CST_error(0,$message,__LINE__,__FILE__);
+ &CST_error(0,$message,"",__LINE__,__FILE__);
}
}
else
{
$message = "Thorn $thorn attempted to EXTEND or USE non-existant parameter $parameter from $friend";
- &CST_error(0,$message,__LINE__,__FILE__);
+ &CST_error(0,$message,"",__LINE__,__FILE__);
}
}
}