aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--src/prog.c6
2 files changed, 7 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 54ca12b7..0b98c98e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,12 @@
2008-03-10 Sergey Poznyakoff <gray@gnu.org.ua>
-
+
-= Release 4.4 =-
2008-03-10 Sergey Poznyakoff <gray@gnu.org.ua>
+ * src/prog.c (env_throw, env_throw_0, env_throw_bi): Fix
+ signatures.
+
* configure.ac, NEWS: Version 4.4
* src/mailfromd.h (enum mf_status_code): Add a comma and a count
diff --git a/src/prog.c b/src/prog.c
index f39fb1b7..26621102 100644
--- a/src/prog.c
+++ b/src/prog.c
@@ -1869,7 +1869,7 @@ env_vsprintf(eval_environ_t env, const char *biname,
}
void
-env_throw_0(eval_environ_t env, mf_status status, size_t off)
+env_throw_0(eval_environ_t env, mf_exception status, size_t off)
{
prog_counter_t pc = env->catch[status];
if (pc) {
@@ -1891,7 +1891,7 @@ env_throw_0(eval_environ_t env, mf_status status, size_t off)
}
void
-env_throw(eval_environ_t env, mf_status status, const char *fmt, ...)
+env_throw(eval_environ_t env, mf_exception status, const char *fmt, ...)
{
va_list ap;
size_t off;
@@ -1902,7 +1902,7 @@ env_throw(eval_environ_t env, mf_status status, const char *fmt, ...)
}
void
-env_throw_bi(eval_environ_t env, mf_status status, const char *biname,
+env_throw_bi(eval_environ_t env, mf_exception status, const char *biname,
const char *fmt, ...)
{
va_list ap;

Return to:

Send suggestions and report system problems to the System administrator.