aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorallen <allen@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2001-05-11 15:33:39 +0000
committerallen <allen@57bc7290-fb3d-4efd-a9b1-28e84cce6043>2001-05-11 15:33:39 +0000
commit40579e922127f92535dd2b7bb89277f5357b15a4 (patch)
treedd85d703672e15a3bfa672097d182cf5acc102e0
parentd3e0aa25bde49ed274378282aed3e66657346bb0 (diff)
Typo in error message
git-svn-id: http://svn.cactuscode.org/arrangements/CactusElliptic/EllBase/trunk@53 57bc7290-fb3d-4efd-a9b1-28e84cce6043
-rw-r--r--src/Ell_DBstructure.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Ell_DBstructure.c b/src/Ell_DBstructure.c
index 6d34f77..20794e9 100644
--- a/src/Ell_DBstructure.c
+++ b/src/Ell_DBstructure.c
@@ -305,8 +305,8 @@ int Ell_GetStrKey(char *value, const char *keychain) {
getme = (struct t_ellthingy*)GetNamedData(EllInfoDB, keychain);
if (!(getme)) {
- printf("Ell_GetRealKey: Cannot get structure with key >%s< \n",keychain);
- printf("Ell_GetRealKey: Create first!\n");
+ printf("Ell_GetStrKey: Cannot get structure with key >%s< \n",keychain);
+ printf("Ell_GetStrKey: Create first!\n");
retval = ELLGET_NOKEY;
}
else if (getme->type!=CCTK_VARIABLE_STRING) {