aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@ff385933-4943-42dc-877b-ffc776028de6>2003-10-08 09:45:41 +0000
committertradke <tradke@ff385933-4943-42dc-877b-ffc776028de6>2003-10-08 09:45:41 +0000
commitb8fc7e54da3a2ddd75843797a2c968ae0a287fd3 (patch)
tree5d50997faa9cfcdf387ffd1afd069998bb728103
parentf96123a53948a896c3ffeeff2ed458dd2ea93c9a (diff)
Fixed grdoc for NaNChecker_CheckVarsForNaN() which had the error return codes
in wrong order. Thanks to Ian for spotting this. git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/NaNChecker/trunk@49 ff385933-4943-42dc-877b-ffc776028de6
-rw-r--r--src/NaNCheck.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/NaNCheck.c b/src/NaNCheck.c
index a1089e0..ea880de 100644
--- a/src/NaNCheck.c
+++ b/src/NaNCheck.c
@@ -249,9 +249,9 @@ int NaNChecker_NaNCheck (const cGH *GH)
@returntype int
@returndesc
the total number of NaN values found, or<BR>
- -1 if a NULL pointer was passed for 'GH' and/or 'vars',<BR>
- -2 if NaNChecker was already called at this iteration,<BR>
- -3 if an unknow keyword was passed in 'action_if_found',<BR>
+ -1 if NaNChecker was already called at this iteration,<BR>
+ -2 if a NULL pointer was passed for 'GH' and/or 'vars',<BR>
+ -3 if an unknown keyword was passed in 'action_if_found',<BR>
-4 if the 'vars' string couldn't be parsed
@endreturndesc
@@*/