From 3dc640f59c45d9a6ab8ad5c8074b31e14d481344 Mon Sep 17 00:00:00 2001
From: Cyrus Harrison <cyrush@llnl.gov>
Date: Tue, 12 Dec 2023 16:42:01 -0800
Subject: [PATCH] typo

---
 src/libs/ascent/runtimes/expressions/ascent_data_binning.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/libs/ascent/runtimes/expressions/ascent_data_binning.cpp b/src/libs/ascent/runtimes/expressions/ascent_data_binning.cpp
index 89b19751b..2310350a2 100644
--- a/src/libs/ascent/runtimes/expressions/ascent_data_binning.cpp
+++ b/src/libs/ascent/runtimes/expressions/ascent_data_binning.cpp
@@ -899,7 +899,7 @@ void exchange_bins(Array<double> &bins, const std::string op)
   global_bins.resize(bins_size);
   double *global_ptr = global_bins.get_host_ptr();
 
-  if(op == "sum" || op == "pdf" || op == "avg" || op == "count"
+  if(op == "sum" || op == "pdf" || op == "avg" || op == "count" ||
      op == "std" || op == "var" || op == "rms")
   {
     MPI_Allreduce(bins_ptr, global_ptr, bins_size, MPI_DOUBLE, MPI_SUM, mpi_comm);