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
66cfe533
Commit
66cfe533
authored
Oct 08, 2010
by
Thomas White
Browse files
'Filename' doesn't need to be const
parent
a470ed5d
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/image.h
View file @
66cfe533
...
...
@@ -78,7 +78,7 @@ struct image {
UnitCell
*
candidate_cells
[
MAX_CELL_CANDIDATES
];
int
ncells
;
struct
detector
*
det
;
c
onst
char
*
filename
;
c
har
*
filename
;
struct
reflhit
*
hits
;
int
n_hits
;
...
...
src/indexamajig.c
View file @
66cfe533
...
...
@@ -280,7 +280,7 @@ static void process_image(struct process_args *pargs)
struct
image
*
simage
;
float
*
data_for_measurement
;
size_t
data_size
;
const
char
*
filename
=
pargs
->
filename
;
char
*
filename
=
pargs
->
filename
;
UnitCell
*
cell
=
pargs
->
cell
;
int
config_cmfilter
=
pargs
->
config_cmfilter
;
int
config_noisefilter
=
pargs
->
config_noisefilter
;
...
...
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