branches/zip: Split lines before operators, not after them.

This commit is contained in:
marko 2006-09-05 19:37:43 +00:00
parent d92cdad1fa
commit de5b892a99
2 changed files with 6 additions and 6 deletions

View file

@ -2139,8 +2139,8 @@ btr_cur_pessimistic_update(
/* Add the externally stored records. */
for (i = 0; i < big_rec_vec->n_fields; i++) {
ext_vect[n_ext_vect++] =
big_rec_vec->fields[i].field_no;
ext_vect[n_ext_vect++]
= big_rec_vec->fields[i].field_no;
}
}
@ -4290,8 +4290,8 @@ end_of_blob:
ut_a(!d_stream.avail_out);
inflateEnd(&d_stream);
ut_ad(buf + local_len + d_stream.total_out ==
d_stream.next_out);
ut_ad(buf + local_len + d_stream.total_out
== d_stream.next_out);
*len = d_stream.next_out - buf;
return(buf);
}

View file

@ -1343,8 +1343,8 @@ page_copy_rec_list_end_to_created_page(
count++;
n_recs++;
if (UNIV_UNLIKELY(count ==
(PAGE_DIR_SLOT_MAX_N_OWNED + 1) / 2)) {
if (UNIV_UNLIKELY
(count == (PAGE_DIR_SLOT_MAX_N_OWNED + 1) / 2)) {
slot_index++;