diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-13 10:19:43 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-13 10:19:43 +0000 |
commit | 544c80d71534adc8f2d3843d06b01655dc02f1a9 (patch) | |
tree | e221f6ba1f0161c45f100366fb496ace3e053c57 /cmd.c | |
parent | 36fe146a74230e5072c367a9987b6c021320c0dd (diff) | |
download | rtmux-544c80d71534adc8f2d3843d06b01655dc02f1a9.tar.gz rtmux-544c80d71534adc8f2d3843d06b01655dc02f1a9.tar.bz2 rtmux-544c80d71534adc8f2d3843d06b01655dc02f1a9.zip |
Fix constness of cmd_template_replace.
Diffstat (limited to 'cmd.c')
-rw-r--r-- | cmd.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1221,7 +1221,7 @@ cmd_find_pane_offset(const char *paneptr, struct winlink *wl) /* Replace the first %% or %idx in template by s. */ char * -cmd_template_replace(char *template, const char *s, int idx) +cmd_template_replace(const char *template, const char *s, int idx) { char ch; char *buf, *ptr; |