diff --git a/harbour/ChangeLog b/harbour/ChangeLog index d3c50c4931..4bf022428e 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-24 13:27 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/source/rtl/gttrm/gttrm.c + * formatting + 2009-03-24 01:08 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/tests/speedtst.prg * updated to compile with FlagShip diff --git a/harbour/source/rtl/gttrm/gttrm.c b/harbour/source/rtl/gttrm/gttrm.c index 0d0efa06e0..c93a925c4d 100644 --- a/harbour/source/rtl/gttrm/gttrm.c +++ b/harbour/source/rtl/gttrm/gttrm.c @@ -1555,7 +1555,7 @@ static void hb_gt_trm_LinuxSetCursorStyle( PHB_GTTRM pTerm, int iStyle ) if( lcurs != -1 ) { char escseq[64]; - hb_snprintf( escseq, sizeof( escseq ), "\033[?25%c\033[?%hdc", + hb_snprintf( escseq, sizeof( escseq ), "\033[?25%c\033[?%dc", iStyle == SC_NONE ? 'l' : 'h', lcurs ); hb_gt_trm_termOut( pTerm, ( BYTE * ) escseq, strlen( escseq ) ); pTerm->iCursorStyle = iStyle;