mirror of
https://github.com/tmux/tmux.git
synced 2025-04-23 04:48:47 +00:00
Fix previous
cwd is a char*, not a u_int.
This commit is contained in:
parent
5944230c50
commit
334c28afe7
4
format.c
4
format.c
@ -522,8 +522,8 @@ format_window_pane(struct format_tree *ft, struct window_pane *wp)
|
|||||||
struct grid *gd = wp->base.grid;
|
struct grid *gd = wp->base.grid;
|
||||||
struct grid_line *gl;
|
struct grid_line *gl;
|
||||||
unsigned long long size;
|
unsigned long long size;
|
||||||
u_int i, idx, cwd;
|
u_int i, idx;
|
||||||
char *cmd;
|
char *cmd, *cwd;
|
||||||
|
|
||||||
size = 0;
|
size = 0;
|
||||||
for (i = 0; i < gd->hsize; i++) {
|
for (i = 0; i < gd->hsize; i++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user