diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-23 07:41:21 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2008-06-23 07:41:21 +0000 |
commit | c24d849fa41114108b52a0a5e9256a7f0558b0d8 (patch) | |
tree | 93dbcffb22bbddf9181fbc3e89d93d8e36bb6afd /status.c | |
parent | e013970b0b0b44bf871233cffcf5ca77ce700e2e (diff) | |
download | rtmux-c24d849fa41114108b52a0a5e9256a7f0558b0d8.tar.gz rtmux-c24d849fa41114108b52a0a5e9256a7f0558b0d8.tar.bz2 rtmux-c24d849fa41114108b52a0a5e9256a7f0558b0d8.zip |
Split options into a table to allow abbreviations.
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: status.c,v 1.37 2008-06-21 14:11:39 nicm Exp $ */ +/* $Id: status.c,v 1.38 2008-06-23 07:41:21 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -48,7 +48,7 @@ status_redraw(struct client *c) if (clock_gettime(CLOCK_REALTIME, &c->status_timer) != 0) fatal("clock_gettime failed"); - colr = options_get_colours(&s->options, "status-colour"); + colr = options_get_number(&s->options, "status-colour"); yy = c->sy - 1; if (yy == 0) |