From 4f1ef47b097881dc95cc1f6efdce524fc2844bc3 Mon Sep 17 00:00:00 2001 From: nick black Date: Sun, 25 Jul 2021 00:54:00 -0400 Subject: [PATCH] remove stray 'u' from plot summary --- src/lib/plot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/plot.c b/src/lib/plot.c index e0f00e259..6356271f4 100644 --- a/src/lib/plot.c +++ b/src/lib/plot.c @@ -206,7 +206,7 @@ int redraw_plot_##T(nc##X##plot* ncp){ \ int lastslot = ncp->slotstart ? ncp->slotstart - 1 : ncp->slotcount - 1; \ ncplane_set_styles(ncp->ncp, ncp->legendstyle); \ ncplane_set_channels(ncp->ncp, ncp->maxchannels); \ - ncplane_printf_aligned(ncp->ncp, 0, NCALIGN_RIGHT, "%" PRIu64 "u", (uint64_t)ncp->slots[lastslot]); \ + ncplane_printf_aligned(ncp->ncp, 0, NCALIGN_RIGHT, "%" PRIu64, (uint64_t)ncp->slots[lastslot]); \ } \ ncplane_home(ncp->ncp); \ return 0; \