summaryrefslogtreecommitdiff
path: root/include/libast_internal.h
diff options
context:
space:
mode:
authorMichael Jennings <mej@kainx.org>2003-11-27 05:24:41 +0000
committerMichael Jennings <mej@kainx.org>2003-11-27 05:24:41 +0000
commit8bf7560e22595b22f4d835176ed1775be3427ec8 (patch)
tree203d1227b2dba618d3ae88a1e0d1a01cd0cf7be2 /include/libast_internal.h
parentffca8130486f858a5cd5cbe9d47532e01bdcacb6 (diff)
downloadlibast-8bf7560e22595b22f4d835176ed1775be3427ec8.tar.gz
Thu Nov 27 00:22:16 2003 Michael Jennings (mej)
More namespace cleaning. Just one more set to go. SVN revision: 7956
Diffstat (limited to 'include/libast_internal.h')
-rw-r--r--include/libast_internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/libast_internal.h b/include/libast_internal.h
index c98a0e9..87a1e55 100644
--- a/include/libast_internal.h
+++ b/include/libast_internal.h
@@ -141,7 +141,7 @@ typedef struct memrec_t_struct {
} \
} \
if ((i) > ctx_idx) { \
- print_error("Parsing file %s, line %lu: No such context \"%s\"\n", \
+ libast_print_error("Parsing file %s, line %lu: No such context \"%s\"\n", \
file_peek_path(), file_peek_line(), (n)); \
(the_id) = 0; \
} \
@@ -428,10 +428,10 @@ typedef struct spifconf_var_t_struct {
#define CHECK_BAD() do { \
SPIFOPT_BADOPTS_SET(SPIFOPT_BADOPTS_GET() + 1); \
if (SPIFOPT_BADOPTS_GET() > SPIFOPT_ALLOWBAD_GET()) { \
- print_error("Error threshold exceeded, giving up.\n"); \
+ libast_print_error("Error threshold exceeded, giving up.\n"); \
SPIFOPT_HELPHANDLER(); \
} else { \
- print_error("Attempting to continue, but strange things may happen.\n"); \
+ libast_print_error("Attempting to continue, but strange things may happen.\n"); \
} \
} while(0)