diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-11-28 14:57:59 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-11-28 14:57:59 +0000 |
commit | dc57c5bb50b0a0f34fec4b03fd769ad0ed339b2b (patch) | |
tree | b4b901371b9f78f5f43162cbabf679e0feffe64b /clock.c | |
parent | 575510045a37ef82ca33e68d3775d5aba88c10b3 (diff) | |
download | rtmux-dc57c5bb50b0a0f34fec4b03fd769ad0ed339b2b.tar.gz rtmux-dc57c5bb50b0a0f34fec4b03fd769ad0ed339b2b.tar.bz2 rtmux-dc57c5bb50b0a0f34fec4b03fd769ad0ed339b2b.zip |
Sync OpenBSD patchset 573:
This doesn't need to be u_int.
Diffstat (limited to 'clock.c')
-rw-r--r-- | clock.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $Id: clock.c,v 1.7 2009-09-11 14:13:52 tcunha Exp $ */ +/* $Id: clock.c,v 1.8 2009-11-28 14:57:59 tcunha Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -97,7 +97,7 @@ const char clock_table[14][5][5] = { }; void -clock_draw(struct screen_write_ctx *ctx, u_int colour, int style) +clock_draw(struct screen_write_ctx *ctx, int colour, int style) { struct screen *s = ctx->s; struct grid_cell gc; |