Removing stray spaces before tabs.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4652 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
This commit is contained in:
Benno Schulenberg
2014-03-17 21:36:37 +00:00
parent 88ff6a7f3d
commit a65ef4244c
11 changed files with 22 additions and 21 deletions

View File

@@ -937,7 +937,7 @@ int open_file(const char *filename, bool newfie, FILE **f)
statusbar(_("Error reading %s: %s"), filename,
strerror(errno));
beep();
return -1;
return -1;
} else {
/* The file is A-OK. Open it. */
*f = fdopen(fd, "rb");