aboutsummaryrefslogtreecommitdiff
path: root/src/render_hkl.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2021-07-21 15:22:12 +0200
committerThomas White <taw@physics.org>2021-07-22 11:22:18 +0200
commit13d65b9785d1557e29f5f06871d01bad8e76e44c (patch)
treedfd9c52a80639882695eb63b0c87af06ebcbb29d /src/render_hkl.c
parentd5cf0404a08253f52c6ddf3f6d80e694b9de4e7a (diff)
Clean up shadowed variables
Diffstat (limited to 'src/render_hkl.c')
-rw-r--r--src/render_hkl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/render_hkl.c b/src/render_hkl.c
index c47a2c4d..00992d71 100644
--- a/src/render_hkl.c
+++ b/src/render_hkl.c
@@ -758,7 +758,6 @@ int main(int argc, char *argv[])
int config_colkey = 0;
int config_zawhinge = 0;
char *cellfile = NULL;
- int r = 0;
double boost = 1.0;
char *sym_str = NULL;
char *sym_str_fromfile = NULL;
@@ -1049,5 +1048,5 @@ int main(int argc, char *argv[])
reflist_free(list);
if ( outfile != NULL ) free(outfile);
- return r;
+ return 0;
}