Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Oleksii Turkot
CrystFEL
Commits
10371502
Commit
10371502
authored
Oct 18, 2019
by
Thomas White
Browse files
indexamajig: Fix incorrect timeout logic
parent
96861c59
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/indexamajig.c
View file @
10371502
...
...
@@ -1012,7 +1012,7 @@ int main(int argc, char *argv[])
methods
=
indexing_methods
(
args
.
iargs
.
ipriv
,
&
n
);
for
(
i
=
0
;
i
<
n
;
i
++
)
{
if
(
methods
[
i
]
&
INDEXING_PINKINDEXER
)
{
if
(
(
methods
[
i
]
&
INDEXING_METHOD_MASK
)
==
INDEXING_PINKINDEXER
)
{
/* Extend timeout if using pinkIndexer */
timeout
=
3000
;
break
;
...
...
Write
Preview
Supports
Markdown
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