diff --git a/src/winio.c b/src/winio.c
index 232cbf203b079ade06a4cd0d1f4456a9a1737a27..6ac8d3bd75c38a4a23dffe18f0be2f6c3960aeea 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;
     }