diff options
author | Thomas Adam <thomas@xteddy.org> | 2013-10-11 19:41:43 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2013-10-11 19:41:43 +0100 |
commit | 334c28afe71eabb236bf8cfdfc18f56d99719711 (patch) | |
tree | 1da825d9456f177e96a2b70a154c89319651c55c | |
parent | 5944230c507b8cdc10688f0196b10126daee3aad (diff) | |
download | rtmux-334c28afe71eabb236bf8cfdfc18f56d99719711.tar.gz rtmux-334c28afe71eabb236bf8cfdfc18f56d99719711.tar.bz2 rtmux-334c28afe71eabb236bf8cfdfc18f56d99719711.zip |
Fix previous
cwd is a char*, not a u_int.
-rw-r--r-- | format.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -522,8 +522,8 @@ format_window_pane(struct format_tree *ft, struct window_pane *wp) struct grid *gd = wp->base.grid; struct grid_line *gl; unsigned long long size; - u_int i, idx, cwd; - char *cmd; + u_int i, idx; + char *cmd, *cwd; size = 0; for (i = 0; i < gd->hsize; i++) { |