nano

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

commit 1a1ea3d42fb2117b6e66e80b10ca461e0cf809dd
parent 15aaa2c31acb5ea50f48a9b5ceefba1b623253a4
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Sat, 28 May 2005 23:32:45 +0000

cosmetic fixes


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2563 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 @@ -1571,6 +1571,7 @@ int write_file(const char *name, bool tmp, int append, bool } f = fdopen(fd, (append == 1) ? "ab" : "wb"); + if (f == NULL) { statusbar(_("Error writing %s: %s"), realname, strerror(errno)); close(fd); @@ -1582,8 +1583,7 @@ int write_file(const char *name, bool tmp, int append, bool assert(fileage != NULL && filebot != NULL); while (fileptr != filebot) { - size_t data_len = strlen(fileptr->data); - size_t size; + size_t data_len = strlen(fileptr->data), size; /* Newlines to nulls, just before we write to disk. */ sunder(fileptr->data);