This doesn't need to be u_int.

This commit is contained in:
Nicholas Marriott 2009-11-26 23:13:47 +00:00
parent 1acf066fb9
commit 106ee8f30a
3 changed files with 3 additions and 4 deletions

View File

@ -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;

2
tmux.h
View File

@ -1408,7 +1408,7 @@ int paste_replace(struct paste_stack *, u_int, char *, size_t);
/* clock.c */
extern const char clock_table[14][5][5];
void clock_draw(struct screen_write_ctx *, u_int, int);
void clock_draw(struct screen_write_ctx *, int, int);
/* cmd.c */
int cmd_pack_argv(int, char **, char *, size_t);

View File

@ -113,8 +113,7 @@ window_clock_draw_screen(struct window_pane *wp)
{
struct window_clock_mode_data *data = wp->modedata;
struct screen_write_ctx ctx;
u_int colour;
int style;
int colour, style;
colour = options_get_number(&wp->window->options, "clock-mode-colour");
style = options_get_number(&wp->window->options, "clock-mode-style");