summaryrefslogtreecommitdiffstats
path: root/screen.c
diff options
context:
space:
mode:
authornicm <nicm>2015-12-28 14:02:52 +0000
committernicm <nicm>2015-12-28 14:02:52 +0000
commit2a1f27eb1af6645209746659b600fc546f725605 (patch)
tree57e829c9fadcacdba80a079d7d4fcec08462d721 /screen.c
parent60cbdf9ccd4c1232089272cfdc8ee17ca1bb8d3d (diff)
Couple of trivial style nits.
Diffstat (limited to 'screen.c')
-rw-r--r--screen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/screen.c b/screen.c
index 5551bb93..db9f52a6 100644
--- a/screen.c
+++ b/screen.c
@@ -94,10 +94,10 @@ screen_set_cursor_style(struct screen *s, u_int style)
/* Set screen cursor colour. */
void
-screen_set_cursor_colour(struct screen *s, const char *colour_string)
+screen_set_cursor_colour(struct screen *s, const char *colour)
{
free(s->ccolour);
- s->ccolour = xstrdup(colour_string);
+ s->ccolour = xstrdup(colour);
}
/* Set screen title. */