summaryrefslogtreecommitdiff
path: root/lib/sbin/create_c_stuff.pl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sbin/create_c_stuff.pl')
-rw-r--r--lib/sbin/create_c_stuff.pl6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/sbin/create_c_stuff.pl b/lib/sbin/create_c_stuff.pl
index 3debb2da..247c5150 100644
--- a/lib/sbin/create_c_stuff.pl
+++ b/lib/sbin/create_c_stuff.pl
@@ -369,7 +369,8 @@ sub get_c_type_string
}
else
{
- die("Unknown parameter type '$type'");
+ $message = "Unknown parameter type '$type'";
+ &CST_error(0,$message,__LINE__,__FILE__);
}
return $type_string;
@@ -497,7 +498,8 @@ sub order_params
}
else
{
- die("Unknown parameter type '$type'");
+ $message = "Unknown parameter type '$type'";
+ &CST_error(0,$message,__LINE__,__FILE__);
}
}