summaryrefslogtreecommitdiff
path: root/ACE/ace/Svc_Conf.y
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
commit2e3a3b85086314c40d93dcfcf906c2910655d498 (patch)
treec4f0203133da91d27b4485496bc3f316f09bdb0f /ACE/ace/Svc_Conf.y
parent52a5234912b30ada642d26372144bd06762ce4fa (diff)
downloadATCD-2e3a3b85086314c40d93dcfcf906c2910655d498.tar.gz
Diffstat (limited to 'ACE/ace/Svc_Conf.y')
-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);
}