Fix constness again, sigh.

pull/1/head
Nicholas Marriott 2013-02-13 10:41:12 +00:00
parent fc6f08d5b7
commit f4c815a1d9
1 changed files with 4 additions and 4 deletions

8
cmd.c
View File

@ -1223,10 +1223,10 @@ cmd_find_pane_offset(const char *paneptr, struct winlink *wl)
char *
cmd_template_replace(const char *template, const char *s, int idx)
{
char ch;
char *buf, *ptr;
int replaced;
size_t len;
char ch, *buf;
const char *ptr;
int replaced;
size_t len;
if (strstr(template, "%") == NULL)
return (xstrdup(template));