From d3611db99f22de7cb6ce07b92a017e0b76c396a6 Mon Sep 17 00:00:00 2001 From: Lauri Tirkkonen Date: Mon, 11 Mar 2019 20:26:56 +0200 Subject: [PATCH] termio.h: remove st_crow & st_ccol not used by anything anymore --- include/sys/termio.h | 2 -- usr/src/cmd/truss/expound.c | 2 -- 2 files changed, 4 deletions(-) diff --git a/include/sys/termio.h b/include/sys/termio.h index 34622aa0d7..377a296428 100644 --- a/include/sys/termio.h +++ b/include/sys/termio.h @@ -55,8 +55,6 @@ struct termio { struct termcb { char st_flgs; /* term flags */ char st_termt; /* term type */ - char st_crow; /* gtty only - current row */ - char st_ccol; /* gtty only - current col */ char st_vrow; /* variable row */ char st_lrow; /* last row */ }; diff --git a/usr/src/cmd/truss/expound.c b/usr/src/cmd/truss/expound.c index bba1467230..4a8db39ae4 100644 --- a/usr/src/cmd/truss/expound.c +++ b/usr/src/cmd/truss/expound.c @@ -698,8 +698,6 @@ show_termcb(private_t *pri, long offset) pri->pname, termcb.st_flgs&0xff, termcb.st_termt&0xff, - termcb.st_crow&0xff, - termcb.st_ccol&0xff, termcb.st_vrow&0xff, termcb.st_lrow&0xff); } -- 2.11.4.GIT