nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit 87104114bd97a4ac80cb7e86b812fad90f61bd5b
parent c4e3d9ed01fc8657c27113d6e3604ea09b3d6760
Author: Chris Allegretta <chrisa@asty.org>
Date:   Sun, 21 Jul 2002 15:46:48 +0000

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

Diffstat:
Mfiles.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files.c b/files.c @@ -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;