Fix indentation.

svn path=/trunk/; revision=42408
This commit is contained in:
Guy Harris 2012-05-04 02:16:51 +00:00
parent 652349d0a5
commit daa7f8851e
1 changed files with 3 additions and 3 deletions

View File

@ -974,11 +974,11 @@ gboolean nstrace_read_v20(wtap *wth, int *err, gchar **err_info, gint64 *data_of
break;
}
}
}
}
nstrace_buf_offset = 0;
wth->data_offset += nstrace_buflen;
nstrace_buflen = GET_READ_PAGE_SIZE((nstrace->file_size - wth->data_offset));
wth->data_offset += nstrace_buflen;
nstrace_buflen = GET_READ_PAGE_SIZE((nstrace->file_size - wth->data_offset));
}while((nstrace_buflen > 0) && (bytes_read = file_read(nstrace_buf, nstrace_buflen, wth->fh)) && (bytes_read == nstrace_buflen));
return FALSE;