diff options
-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); } |