diff options
Diffstat (limited to 'otherlibs/unix/errmsg.c')
-rw-r--r-- | otherlibs/unix/errmsg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/otherlibs/unix/errmsg.c b/otherlibs/unix/errmsg.c index cf1930ff8..65d51a725 100644 --- a/otherlibs/unix/errmsg.c +++ b/otherlibs/unix/errmsg.c @@ -22,7 +22,7 @@ extern int error_table[]; extern char * strerror(int); -value unix_error_message(value err) +value unix_error_message(value err) /* ML */ { int errnum; errnum = Is_block(err) ? Int_val(Field(err, 0)) : error_table[Int_val(err)]; |