From 941eab33e9722b26244e7f344311f065eb28ef44 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Tue, 30 Oct 2007 10:59:43 +0000 Subject: %u -> %d for indexes. Some lint fixes. --- status.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'status.c') diff --git a/status.c b/status.c index 0f1b5680..ad0ef1b2 100644 --- a/status.c +++ b/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 @@ -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; -- cgit