summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/et/ChangeLog5
-rw-r--r--src/util/et/com_err.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/util/et/ChangeLog b/src/util/et/ChangeLog
index a49f27330..d27c224de 100644
--- a/src/util/et/ChangeLog
+++ b/src/util/et/ChangeLog
@@ -1,3 +1,8 @@
+2001-03-11 Ezra Peisach <epeisach@mit.edu>
+
+ * com_err.h: For struct error_table, change the base from an
+ unsigned to signed long (error messages and tables are signed)
+
2001-03-07 Ken Raeburn <raeburn@mit.edu>
* test_et.c (main): Only use sys_nerr tests if HAVE_SYS_ERRLIST.
diff --git a/src/util/et/com_err.h b/src/util/et/com_err.h
index 4e519ccb0..0ac8b2846 100644
--- a/src/util/et/com_err.h
+++ b/src/util/et/com_err.h
@@ -41,7 +41,7 @@ typedef void (*et_old_error_hook_func) (const char FAR *, errcode_t,
struct error_table {
/*@shared@*/ char const FAR * const FAR * msgs;
- unsigned long base;
+ long base;
unsigned int n_msgs;
};