sh: Add a forgotten const.

This commit is contained in:
Jilles Tjoelker 2010-08-13 20:29:43 +00:00
parent 4f76d548c9
commit c5e4fa998d

View File

@ -641,7 +641,7 @@ evalcommand(union node *cmd, int flags, struct backcmd *backcmd)
char *lastarg;
int realstatus;
int do_clearcmdentry;
char *path = pathval();
const char *path = pathval();
/* First expand the arguments. */
TRACE(("evalcommand(%p, %d) called\n", (void *)cmd, flags));