diff options
author | Andrew Aquila <andrew.aquila@cfel.de> | 2011-12-03 12:03:42 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:42 +0100 |
commit | 20a22a65c3f7a01187615a3677b80389f91255c3 (patch) | |
tree | 2275c28e22d459852e28fd228dce9db264956204 /src | |
parent | 9fbb4f7f3ce82fcb7743fb4e821d0a9692cac1f1 (diff) |
fix a missing {
Diffstat (limited to 'src')
-rw-r--r-- | src/powder_plot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/powder_plot.c b/src/powder_plot.c index 4cc2d1f8..c3b809cf 100644 --- a/src/powder_plot.c +++ b/src/powder_plot.c @@ -1076,11 +1076,11 @@ int main(int argc, char *argv[]) resolution_limits(image.reflections, cell, &hist_info.q_min, &hist_info.q_max); } else if (hist_info.q_min < 0.0) { - double dummy; + double dummy; resolution_limits(image.reflections, cell, &hist_info.q_min, &dummy); } else if (hist_info.q_max < 0.0) { - double dummy; + double dummy; resolution_limits(image.reflections, cell, &dummy, &hist_info.q_max); } |