mirror of
https://github.com/tmux/tmux.git
synced 2025-09-03 22:43:58 +00:00
%u -> %d for indexes. Some lint fixes.
This commit is contained in:
4
status.c
4
status.c
@ -1,4 +1,4 @@
|
||||
/* $Id: status.c,v 1.7 2007-10-26 12:29:07 nicm Exp $ */
|
||||
/* $Id: status.c,v 1.8 2007-10-30 10:59:43 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -47,7 +47,7 @@ status_write(struct client *c)
|
||||
if (session_hasbell(c->session, wl))
|
||||
flag = '!';
|
||||
status_print(
|
||||
b, &size, "%u:%s%c ", wl->idx, wl->window->name, flag);
|
||||
b, &size, "%d:%s%c ", wl->idx, wl->window->name, flag);
|
||||
|
||||
if (size == 0)
|
||||
break;
|
||||
|
Reference in New Issue
Block a user