aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/announce.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/announce.cc b/src/announce.cc
index bf26933..8a46c68 100644
--- a/src/announce.cc
+++ b/src/announce.cc
@@ -766,14 +766,14 @@ namespace Formaline
keyrebuf << key << ".Re";
string const keyrestr = keyrebuf.str();
char const * const keyre = keyrestr.c_str();
- stores.store (keyre, val.Re);
+ stores.store (keyre, CCTK_CmplxReal(val));
}
{
ostringstream keyimbuf;
keyimbuf << key << ".Im";
string const keyimstr = keyimbuf.str();
char const * const keyim = keyimstr.c_str();
- stores.store (keyim, val.Im);
+ stores.store (keyim, CCTK_CmplxImag(val));
}
}
break;