From 9ce8222d365a65aad3f8bdb62183874f46c32d10 Mon Sep 17 00:00:00 2001 From: nick black Date: Wed, 12 May 2021 13:02:14 -0400 Subject: [PATCH] drop "available" output from reel demo --- src/demo/reel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/demo/reel.c b/src/demo/reel.c index c74eb35ac..3b00d864d 100644 --- a/src/demo/reel.c +++ b/src/demo/reel.c @@ -102,8 +102,8 @@ drawcb(struct nctablet* t, bool drawfromtop){ if(ll){ const int summaryy = drawfromtop ? 0 : ll - 1; ncplane_on_styles(p, NCSTYLE_BOLD); - if(ncplane_printf_yx(p, summaryy, 0, "[#%u %d lines %u available] ", - tctx->id, tctx->lines, maxy) < 0){ + if(ncplane_printf_yx(p, summaryy, 0, "[#%u %d lines] ", + tctx->id, tctx->lines) < 0){ pthread_mutex_unlock(&tctx->lock); return -1; }