mirror of
https://github.com/tmate-io/tmate.git
synced 2026-07-26 04:14:02 +00:00
Fix previous
cwd is a char*, not a u_int.
This commit is contained in:
parent
5944230c50
commit
334c28afe7
1 changed files with 2 additions and 2 deletions
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_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++) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue