From: David Lawrence Ramsey Date: Fri, 17 Jun 2005 21:21:10 +0000 (+0000) Subject: formatting fix X-Git-Tag: v1.3.8~91 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=954aba7430180c8b9978a798b38f04760b5d4d81;p=nano.git formatting fix git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2712 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/winio.c b/src/winio.c index 232cbf20..6ac8d3bd 100644 --- a/src/winio.c +++ b/src/winio.c @@ -3767,10 +3767,10 @@ void do_cursorpos(bool constant) int bytepct = (totsize == 0) ? 0 : 100 * i / totsize; statusbar( - _("line %ld/%ld (%d%%), col %lu/%lu (%d%%), char %lu/%ld (%d%%)"), - current->lineno, totlines, linepct, - (unsigned long)xpt, (unsigned long)cur_len, colpct, - (unsigned long)i, (unsigned long)totsize, bytepct); + _("line %ld/%ld (%d%%), col %lu/%lu (%d%%), char %lu/%ld (%d%%)"), + current->lineno, totlines, linepct, (unsigned long)xpt, + (unsigned long)cur_len, colpct, (unsigned long)i, + (unsigned long)totsize, bytepct); disable_cursorpos = FALSE; }