Commit df2a8250 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

fix mismatched subscript

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2564 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 1a1ea3d4
Showing with 1 addition and 1 deletion
+1 -1
......@@ -1275,7 +1275,7 @@ void init_backup_dir(void)
* write error. */
int copy_file(FILE *inn, FILE *out)
{
char buf[MAX_BUF_SIZE];
char buf[BUFSIZ];
size_t charsread;
int retval = 0;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment