From 59fe948f836ae7fdf81aa0e7842bcd2431798f15 Mon Sep 17 00:00:00 2001 From: ceriel Date: Mon, 18 Feb 1991 12:05:06 +0000 Subject: [PATCH] Delinted some more --- lang/pc/comp/def.c | 2 +- lang/pc/comp/stab.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lang/pc/comp/def.c b/lang/pc/comp/def.c index 9d2ad397b..bce524163 100644 --- a/lang/pc/comp/def.c +++ b/lang/pc/comp/def.c @@ -121,7 +121,7 @@ DoDirective(directive, nd, tp, scl, function) struct type *tp; struct scopelist *scl; { - int kind; /* kind of directive */ + long kind; /* kind of directive */ int inp; /* internal or external name */ int ext = 0; /* directive = EXTERN */ struct def *df = lookup(directive, PervasiveScope, D_INUSE); diff --git a/lang/pc/comp/stab.c b/lang/pc/comp/stab.c index 2b88d6d17..8a9f5be02 100644 --- a/lang/pc/comp/stab.c +++ b/lang/pc/comp/stab.c @@ -220,11 +220,11 @@ stb_type(tp, assign_num) break; case T_FILE: addc_db_str('L'); - stb_type(tp->next); + stb_type(tp->next, 0); break; case T_STRING: addc_db_str('*'); - stb_type(char_type); + stb_type(char_type, 0); break; } } @@ -268,7 +268,7 @@ stb_string(df, kind) case D_END: case D_PEND: adds_db_str(sprint(buf, "E%d;", df->prc_vis->sc_count)); - C_ms_stb_cst(db_str.base, N_SCOPE, proclevel, 0); + C_ms_stb_cst(db_str.base, N_SCOPE, proclevel, (arith)0); break; case D_VARIABLE: if (df->df_flags & D_VARPAR) { /* VAR parameter */ -- 2.34.1