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
Oleksii Turkot
CrystFEL
Commits
895beffc
Commit
895beffc
authored
Mar 12, 2012
by
Thomas White
Browse files
compare_hkl: Ignore case of --shells argument
parent
1fa74b65
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/compare_hkl.c
View file @
895beffc
...
...
@@ -61,9 +61,9 @@ enum r_shell
static
enum
r_shell
get_r_shell
(
const
char
*
s
)
{
if
(
strcmp
(
s
,
"r1i"
)
==
0
)
return
R_SHELL_R1I
;
if
(
strcmp
(
s
,
"r1f"
)
==
0
)
return
R_SHELL_R1F
;
if
(
strcmp
(
s
,
"rsplit"
)
==
0
)
return
R_SHELL_RSPLIT
;
if
(
strc
asec
mp
(
s
,
"r1i"
)
==
0
)
return
R_SHELL_R1I
;
if
(
strc
asec
mp
(
s
,
"r1f"
)
==
0
)
return
R_SHELL_R1F
;
if
(
strc
asec
mp
(
s
,
"rsplit"
)
==
0
)
return
R_SHELL_RSPLIT
;
ERROR
(
"Unknown R-factor '%s' - try '--shells=rsplit', or --help for"
" more possibilities.
\n
"
,
s
);
...
...
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