2009-03-24 13:27 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/source/rtl/gttrm/gttrm.c
    * formatting
This commit is contained in:
Przemyslaw Czerpak
2009-03-24 12:21:37 +00:00
parent 535b8ad4ba
commit 3b6f812c79
2 changed files with 5 additions and 1 deletions

View File

@@ -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

View File

@@ -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;