From 7ed4401319a1cc2bbf87a27445fbb481b361a713 Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Mon, 23 Mar 2009 15:00:44 +0000 Subject: [PATCH] 2009-03-23 16:06 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/source/pp/ppcore.c ! fixed typo in data constant values written to .ppo files --- harbour/ChangeLog | 4 ++++ harbour/source/pp/ppcore.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6c4c66fa55..c3375b939b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,10 @@ 2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2009-03-23 16:06 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/pp/ppcore.c + ! fixed typo in data constant values written to .ppo files + 2009-03-23 14:54 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/debian/dirs * harbour/harbour.spec diff --git a/harbour/source/pp/ppcore.c b/harbour/source/pp/ppcore.c index 5bdcd8519a..35107c50f9 100644 --- a/harbour/source/pp/ppcore.c +++ b/harbour/source/pp/ppcore.c @@ -1612,7 +1612,7 @@ static int hb_pp_tokenStr( PHB_PP_TOKEN pToken, PHB_MEM_BUFFER pBuffer, } else { - hb_membufAddStr( pBuffer, "t\"" ); + hb_membufAddStr( pBuffer, "d\"" ); hb_membufAddData( pBuffer, pToken->value, pToken->len ); hb_membufAddCh( pBuffer, '"' ); }