Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
d8752ef6
Commit
d8752ef6
authored
Oct 13, 2017
by
Uwe Schulzweida
Browse files
removed cast to unsigned.
parent
06198196
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cdo.cc
View file @
d8752ef6
...
...
@@ -1205,7 +1205,7 @@ int parse_options_long(int argc, char *argv[])
else
if
(
strcmp
(
CDO_optarg
,
"UNDERFLOW"
)
==
0
)
except
=
FE_UNDERFLOW
;
else
if
(
strcmp
(
CDO_optarg
,
"ALL_EXCEPT"
)
==
0
)
except
=
FE_ALL_EXCEPT
;
if
(
except
<
0
)
cdoAbort
(
"option --%s: unsupported argument: %s"
,
"enableexcept"
,
CDO_optarg
);
cdo_feenableexcept
(
(
unsigned
)
except
);
cdo_feenableexcept
(
except
);
if
(
signal
(
SIGFPE
,
cdo_sig_handler
)
==
SIG_ERR
)
cdoWarning
(
"can't catch SIGFPE!"
);
}
else
if
(
ltimestat_date
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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