Remove unused variable

This commit is contained in:
Evan Miller 2020-12-28 20:22:19 -05:00
parent 2bb31f05ee
commit d35807cd6c

View File

@ -65,7 +65,7 @@ int noexec = 0;
#ifndef HAVE_LIBREADLINE
char *readline(char *prompt)
{
char *buf, line[1000];
char line[1000];
int i = 0;
fputs(prompt, stdout);