Thanks but:

>                       } else
> -                             xsnprintf(tmp, sizeof tmp, "\\%03o", line[i]);
> +                             xsnprintf(tmp, sizeof tmp, "\\%03o", (unsigned 
> char)line[i]);

%hho and (u_char)?

>                       buf = cmd_capture_pane_append(buf, len, tmp,
>                           strlen(tmp));
>               }
> diff --git a/input-keys.c b/input-keys.c
> index 762e86b..969ec08 100644
> --- a/input-keys.c
> +++ b/input-keys.c
> @@ -142,7 +142,7 @@ input_key(struct window_pane *wp, int key)
>       char                           *out;
>       u_char                          ch;
>  
> -     log_debug("writing key 0x%x", key);
> +     log_debug("writing key 0x%x", (unsigned)key);

(u_int) not (unsigned) please.

------------------------------------------------------------------------------
Download BIRT iHub F-Type - The Free Enterprise-Grade BIRT Server
from Actuate! Instantly Supercharge Your Business Reports and Dashboards
with Interactivity, Sharing, Native Excel Exports, App Integration & more
Get technology previously reserved for billion-dollar corporations, FREE
http://pubads.g.doubleclick.net/gampad/clk?id=190641631&iu=/4140/ostg.clktrk
_______________________________________________
tmux-users mailing list
tmux-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/tmux-users

Reply via email to