Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
fbc51b8f
Commit
fbc51b8f
authored
Mar 25, 2016
by
Ralf Mueller
Browse files
fix gcc-5.3.0 compile error
parent
bd0327e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/EOFs.c
View file @
fbc51b8f
...
...
@@ -377,7 +377,7 @@ void *EOFs(void * argument)
npack
=
0
;
for
(
i
=
0
;
i
<
gridsize
;
++
i
)
{
if
(
!
DBL_IS_EQUAL
(
weight
[
i
],
0
)
&&
!
DBL_IS_EQUAL
(
weight
[
i
],
missval
)
&&
if
(
!
DBL_IS_EQUAL
(
weight
[
i
],
0
.
0
)
&&
!
DBL_IS_EQUAL
(
weight
[
i
],
missval
)
&&
!
DBL_IS_EQUAL
(
in
[
i
],
missval
)
)
pack
[
npack
++
]
=
i
;
}
...
...
@@ -392,7 +392,7 @@ void *EOFs(void * argument)
ipack
=
0
;
for
(
i
=
0
;
i
<
gridsize
;
++
i
)
{
if
(
!
DBL_IS_EQUAL
(
weight
[
i
],
0
)
&&
!
DBL_IS_EQUAL
(
weight
[
i
],
missval
)
&&
if
(
!
DBL_IS_EQUAL
(
weight
[
i
],
0
.
0
)
&&
!
DBL_IS_EQUAL
(
weight
[
i
],
missval
)
&&
!
DBL_IS_EQUAL
(
in
[
i
],
missval
)
&&
pack
[
ipack
++
]
!=
i
)
{
cdoAbort
(
"Missing values unsupported!"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment