Fix unmatched parentheses.

Signed-off-by: Bård Skaflestad <Bard.Skaflestad@sintef.no>
This commit is contained in:
Bård Skaflestad 2012-06-19 07:51:15 +00:00 committed by Bård Skaflestad
parent 2864de1ddb
commit ce073c0318

View File

@ -716,7 +716,7 @@ void process_grdecl(const struct grdecl *in,
/* Remap out->face_neighbors */
iptr = out->face_neighbors;
for (i = 0; i < (((size_t) 2) * out->number_of_faces; ++i, ++iptr) {
for (i = 0; i < ((size_t) 2) * out->number_of_faces; ++i, ++iptr) {
if (*iptr != -1){
*iptr = out->local_cell_index[*iptr];
}
@ -730,7 +730,7 @@ void process_grdecl(const struct grdecl *in,
* z-coordinate need to change before we finish */
if (sign == -1)
{
for (i = 2; i < (((size_t) 3) * out->number_of_nodes); i += 3)
for (i = 2; i < ((size_t) 3) * out->number_of_nodes; i += 3)
out->node_coordinates[i] *= sign;
}