=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/style.c,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- src/usr.bin/tmux/style.c 2017/01/12 15:36:35 1.11 +++ src/usr.bin/tmux/style.c 2017/01/13 11:58:49 1.12 @@ -1,4 +1,4 @@ -/* $OpenBSD: style.c,v 1.11 2017/01/12 15:36:35 nicm Exp $ */ +/* $OpenBSD: style.c,v 1.12 2017/01/13 11:58:49 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -182,7 +182,7 @@ void style_apply(struct grid_cell *gc, struct options *oo, const char *name) { - struct grid_cell *gcp; + const struct grid_cell *gcp; memcpy(gc, &grid_default_cell, sizeof *gc); gcp = options_get_style(oo, name); @@ -195,7 +195,7 @@ void style_apply_update(struct grid_cell *gc, struct options *oo, const char *name) { - struct grid_cell *gcp; + const struct grid_cell *gcp; gcp = options_get_style(oo, name); if (gcp->fg != 8)