diff options
author | Thomas White <taw@physics.org> | 2010-12-01 16:16:29 +0100 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2012-02-22 15:27:07 +0100 |
commit | 9bf30968f24870f2ed3f4aa1034043b5bc290479 (patch) | |
tree | a4f9a447a6b6d7b780be52425dd0d00e6aa325c9 /src/list_tmp.h | |
parent | eeb079dbdd1f28c0850bacb09af2829e785d596b (diff) |
Update error messages in list_tmp.h
Diffstat (limited to 'src/list_tmp.h')
-rw-r--r-- | src/list_tmp.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/list_tmp.h b/src/list_tmp.h index 749d7e7a..a524b2f9 100644 --- a/src/list_tmp.h +++ b/src/list_tmp.h @@ -30,8 +30,7 @@ static inline void LABEL(integrate)(TYPE *ref, signed int h, if ( (abs(h) > INDMAX) || (abs(k) > INDMAX) || (abs(l) > INDMAX) ) { ERROR_T("\nReflection %i %i %i is out of range!\n", h, k, l); - ERROR_T("You need to re-configure INDMAX, delete the reflection" - " cache file and re-run.\n"); + ERROR_T("You need to re-configure INDMAX and re-run.\n"); exit(1); } @@ -52,8 +51,7 @@ static inline void LABEL(set)(TYPE *ref, signed int h, if ( (abs(h) > INDMAX) || (abs(k) > INDMAX) || (abs(l) > INDMAX) ) { ERROR_T("\nReflection %i %i %i is out of range!\n", h, k, l); - ERROR_T("You need to re-configure INDMAX, delete the reflection" - " cache file and re-run.\n"); + ERROR_T("You need to re-configure INDMAX and re-run.\n"); exit(1); } @@ -73,8 +71,7 @@ static inline TYPE LABEL(lookup)(const TYPE *ref, signed int h, if ( (abs(h) > INDMAX) || (abs(k) > INDMAX) || (abs(l) > INDMAX) ) { ERROR_T("\nReflection %i %i %i is out of range!\n", h, k, l); - ERROR_T("You need to re-configure INDMAX, delete the reflection" - " cache file and re-run.\n"); + ERROR_T("You need to re-configure INDMAX and re-run.\n"); exit(1); } |