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
vidjil
vidjil
Commits
926dfa04
Commit
926dfa04
authored
Apr 03, 2015
by
Mathieu Giraud
Browse files
vidjil.cpp: errr… e-value should be a float, again
Fix
05b02185
, thanks to
@mikael-s
for the bisect.
parent
681bae42
Changes
1
Hide whitespace changes
Inline
Side-by-side
algo/vidjil.cpp
View file @
926dfa04
...
...
@@ -249,7 +249,7 @@ int atoi_NO_LIMIT(char *optarg)
{
return
strcmp
(
NO_LIMIT
,
optarg
)
?
atoi
(
optarg
)
:
NO_LIMIT_VALUE
;
}
int
atof_NO_LIMIT
(
char
*
optarg
)
double
atof_NO_LIMIT
(
char
*
optarg
)
{
return
strcmp
(
NO_LIMIT
,
optarg
)
?
atof
(
optarg
)
:
NO_LIMIT_VALUE
;
}
...
...
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