aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-05-12 16:42:11 +0000
committerjthorn <jthorn@df1f8a13-aa1d-4dd4-9681-27ded5b42416>2002-05-12 16:42:11 +0000
commitd75d9af1745efc1c5dfb24697d1f9895b0c71d00 (patch)
tree900080508701f85f9837ee88011b9193a32407ed /src
parented9e4f195432f5e6166eccc8b22fa2e863766d69 (diff)
fix typos in last commit
git-svn-id: http://svn.cactuscode.org/arrangements/CactusBase/LocalInterp/trunk@24 df1f8a13-aa1d-4dd4-9681-27ded5b42416
Diffstat (limited to 'src')
-rw-r--r--src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c b/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c
index 74ac42a..41a8eee 100644
--- a/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c
+++ b/src/GeneralizedPolynomial-Uniform/InterpLocalUniform.c
@@ -443,7 +443,7 @@ if ((order < 1) || (order > MAX_ORDER))
"\n"
" InterpLocalUniform(): implementation restriction: order=%d\n"
" but we only support 1 <= order <= MAX_ORDER=%d!",
- orders,
+ order,
MAX_ORDER);
return UTIL_ERROR_BAD_INPUT; /*** ERROR RETURN ***/
}
@@ -651,7 +651,7 @@ else {
"\n"
" InterpLocalUniform(): bad table entry\n"
" for \"input_array_offsets\" parameter!\n"
-" error status=%d,
+" error status=%d",
status);
return status; /*** ERROR RETURN ***/
}
@@ -1087,7 +1087,7 @@ if (return_code == CCTK_ERROR_INTERP_POINT_X_RANGE)
__LINE__, __FILE__, CCTK_THORNSTRING,
"\n"
" InterpLocalUniform(): error setting out-of-range table entry/entries!"
-" error status1=%d status2=%d status3=%d"
+" error status1=%d status2=%d status3=%d",
status1, status2, status3);
return (status1 < 0) ? status1 /*** ERROR RETURN ***/
: (status2 < 0) ? status2 /*** ERROR RETURN ***/
@@ -1121,7 +1121,7 @@ if ((status1 < 0) || (status2 < 0) || (status3 < 0) || (status4 < 0))
__LINE__, __FILE__, CCTK_THORNSTRING,
"\n"
" InterpLocalUniform(): error setting Jacobian structure table entry/entries!"
-" error status1=%d status2=%d status3=%d status4=%d"
+" error status1=%d status2=%d status3=%d status4=%d",
status1, status2, status3, status4);
return (status1 < 0) ? status1 /*** ERROR RETURN ***/
: (status2 < 0) ? status2 /*** ERROR RETURN ***/
@@ -1155,7 +1155,7 @@ if ((status1 < 0) || (status2 < 0))
"\n"
" InterpLocalUniform(): error setting\n"
" \"interp_molecule_{min,max}_m\" table entry/entries!"
-" error status1=%d status2=%d"
+" error status1=%d status2=%d",
status1, status2);
return (status1 < 0) ? status1 : status2; /*** ERROR RETURN ***/
}