1
1

Get rid of annoying init error in read_file

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@1238 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Этот коммит содержится в:
Chris Allegretta 2002-07-21 15:46:48 +00:00
родитель c4e3d9ed01
Коммит 87104114bd

Просмотреть файл

@ -164,7 +164,7 @@ filestruct *read_line(char *buf, filestruct *prev, int *line1ins, int len)
int read_file(FILE *f, const char *filename, int quiet)
{
int num_lines = 0, len = 0;
char input; /* current input character */
char input = 0; /* current input character */
char *buf;
long i = 0, bufx = 128;
filestruct *fileptr = current, *tmp = NULL;