nano

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

commit 96de1b0650279086a76a11f754a94d837a344789
parent 23c44504adf2bb8475c553410636f599fc746312
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu, 27 Jan 2005 21:00:10 +0000

cosmetic fix


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2303 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
Msrc/files.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/files.c b/src/files.c @@ -129,8 +129,8 @@ void read_file(FILE *f, const char *filename) { size_t num_lines = 0; /* The number of lines in the file. */ - size_t num_chars = 0; - /* The number of bytes in the file. */ + size_t num_chars; + /* The number of characters in the file. */ size_t len = 0; /* The length of the current line of the file. */ size_t i = 0;