Commit 7ae1a796 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

formatting fixes

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2667 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 4 additions and 3 deletions
+4 -3
...@@ -2187,12 +2187,13 @@ const char *do_int_speller(const char *tempfile_name) ...@@ -2187,12 +2187,13 @@ const char *do_int_speller(const char *tempfile_name)
read_buff_size = pipe_buff_size + 1; read_buff_size = pipe_buff_size + 1;
read_buff = read_buff_ptr = charalloc(read_buff_size); read_buff = read_buff_ptr = charalloc(read_buff_size);
while ((bytesread = read(uniq_fd[0], read_buff_ptr, pipe_buff_size)) > 0) { while ((bytesread = read(uniq_fd[0], read_buff_ptr,
pipe_buff_size)) > 0) {
read_buff_read += bytesread; read_buff_read += bytesread;
read_buff_size += pipe_buff_size; read_buff_size += pipe_buff_size;
read_buff = read_buff_ptr = charealloc(read_buff, read_buff_size); read_buff = read_buff_ptr = charealloc(read_buff,
read_buff_size);
read_buff_ptr += read_buff_read; read_buff_ptr += read_buff_read;
} }
*read_buff_ptr = '\0'; *read_buff_ptr = '\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