diff options
author | Keith Vetter <keithv@fusion.com> | 1995-03-17 00:30:47 +0000 |
---|---|---|
committer | Keith Vetter <keithv@fusion.com> | 1995-03-17 00:30:47 +0000 |
commit | 762daf3bb80d67302642ce6c8406fcc62f75fab6 (patch) | |
tree | 56c8f538f096ea6a2bde88f0b10b80361aeda2c8 /src/util/et/et_name.c | |
parent | bea9cfe5ab7e4dd4560474ef70818bce5f276ac8 (diff) | |
download | krb5-762daf3bb80d67302642ce6c8406fcc62f75fab6.tar.gz krb5-762daf3bb80d67302642ce6c8406fcc62f75fab6.tar.xz krb5-762daf3bb80d67302642ce6c8406fcc62f75fab6.zip |
Ported the error table stuff to the PC
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5135 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util/et/et_name.c')
-rw-r--r-- | src/util/et/et_name.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/util/et/et_name.c b/src/util/et/et_name.c index 044302b8dd..a462676435 100644 --- a/src/util/et/et_name.c +++ b/src/util/et/et_name.c @@ -18,10 +18,10 @@ static const char char_set[] = static char buf[6]; -const char * error_table_name(num) - int num; +const char * error_table_name (num) + long num; { - int ch; + long ch; int i; char *p; |