Sync OpenBSD patchset 1002:

Add some const and fix a warning.
This commit is contained in:
Tiago Cunha
2012-01-20 21:21:32 +00:00
parent b7551c9193
commit 5434a2759a
4 changed files with 7 additions and 6 deletions

4
cmd.c
View File

@ -1214,10 +1214,10 @@ cmd_template_replace(char *template, const char *s, int idx)
}
/* Return the default path for a new pane. */
char *
const char *
cmd_get_default_path(struct cmd_ctx *ctx)
{
char *cwd;
const char *cwd;
struct session *s;
struct window_pane *wp;
struct environ_entry *envent;