summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2008-04-09 11:12:51 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2008-04-09 11:12:51 +0000
commit8283eb4ca9909df98bca793e163267ad45adeb2d (patch)
treec4f0203133da91d27b4485496bc3f316f09bdb0f
parentd79a9d3d55e231e85d63c133f85624e464f1941e (diff)
downloadATCD-8283eb4ca9909df98bca793e163267ad45adeb2d.tar.gz
-rw-r--r--ACE/ace/Svc_Conf.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Svc_Conf.y b/ACE/ace/Svc_Conf.y
index a3bd23b9256..d3b81e8fe69 100644
--- a/ACE/ace/Svc_Conf.y
+++ b/ACE/ace/Svc_Conf.y
@@ -291,7 +291,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
// messages.
void
-yyerror (int yyerrno, int yylineno, ACE_TCHAR const * s)
+yyerror (int yyerrno, int yylineno, char const * s)
{
#if defined (ACE_NLOGGING)
ACE_UNUSED_ARG (yyerrno);
@@ -300,14 +300,14 @@ yyerror (int yyerrno, int yylineno, ACE_TCHAR const * s)
#endif /* ACE_NLOGGING */
ACE_ERROR ((LM_ERROR,
- ACE_TEXT ("ACE (%P|%t) [error %d] on line %d: %s\n"),
+ ACE_TEXT ("ACE (%P|%t) [error %d] on line %d: %C\n"),
yyerrno,
yylineno,
s));
}
void
-yyerror (ACE_TCHAR const * s)
+yyerror (char const * s)
{
yyerror (-1, -1, s);
}