diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-03-28 15:43:41 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2009-03-28 15:43:41 +0000 |
commit | 989d67ccd7c6a685df7af87868b3477989c064e5 (patch) | |
tree | 5109cd83d019dbbbaa77e0bd3d21a1d548322889 /screen.c | |
parent | 8762338e309dadb4cef19f34f2b870aa09c6cf45 (diff) | |
download | rtmux-989d67ccd7c6a685df7af87868b3477989c064e5.tar.gz rtmux-989d67ccd7c6a685df7af87868b3477989c064e5.tar.bz2 rtmux-989d67ccd7c6a685df7af87868b3477989c064e5.zip |
struct grid_data -> struct grid. Stage 1 of the Grand Plan To Make UTF-8 Better.
Diffstat (limited to 'screen.c')
-rw-r--r-- | screen.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,4 +1,4 @@ -/* $Id: screen.c,v 1.78 2009-01-10 01:51:22 nicm Exp $ */ +/* $Id: screen.c,v 1.79 2009-03-28 15:43:41 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -87,7 +87,7 @@ screen_resize(struct screen *s, u_int sx, u_int sy) void screen_resize_x(struct screen *s, u_int sx) { - struct grid_data *gd = s->grid; + struct grid *gd = s->grid; const struct grid_cell *gc; u_int xx, yy; @@ -128,8 +128,8 @@ screen_resize_x(struct screen *s, u_int sx) void screen_resize_y(struct screen *s, u_int sy) { - struct grid_data *gd = s->grid; - u_int oy, yy, ny; + struct grid *gd = s->grid; + u_int oy, yy, ny; if (sy == 0) fatalx("zero size"); |