summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-12-10 15:23:51 +0000
committerjthorn <jthorn@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-12-10 15:23:51 +0000
commitee767fbbd179b81e41052b6249145b4925b9ef86 (patch)
tree2811c7d803c6f875b90db7bbc249ffbeaa3898e9 /doc
parentfc8ba03cd9a83acab096575552ea19b2c57d86a4 (diff)
change examples to use new CCTK_WARN_* macros for warning levels
git-svn-id: http://svn.cactuscode.org/flesh/trunk@3925 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'doc')
-rw-r--r--doc/ReferenceManual/CCTKReference.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ReferenceManual/CCTKReference.tex b/doc/ReferenceManual/CCTKReference.tex
index e94d4cad..60a5c299 100644
--- a/doc/ReferenceManual/CCTKReference.tex
+++ b/doc/ReferenceManual/CCTKReference.tex
@@ -2967,13 +2967,13 @@ int group_index, status;
group_index = CCTK_GroupIndex("BSSN_MoL::ADM_BSSN_metric");
if (group_index < 0)
- CCTK_VWarn(0,
+ CCTK_VWarn(CCTK_WARN_ABORT,
"error return %d trying to get BSSN metric's group index!",
group_index); /*NOTREACHED*/
status = CCTK_GroupData(group_index, &group_info);
if (status < 0)
- CCTK_VWarn(0,
+ CCTK_VWarn(CCTK_WARN_ABORT,
"error return %d trying to get BSSN metric's group information!",
status); /*NOTREACHED*/