From 6ebbfea89881e21552d4a2e2d8e1a8862c85eedf Mon Sep 17 00:00:00 2001 From: Przemyslaw Czerpak Date: Mon, 4 Oct 2010 16:23:37 +0000 Subject: [PATCH] 2010-10-04 18:23 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) * harbour/src/rtl/fstemp.c ! fixed typo in my last commit (#elif instead of #if) Thanks to Itamar M. Lins Jr. for the info. --- harbour/ChangeLog | 5 +++++ harbour/src/rtl/fstemp.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ce2da7e799..beaa349dea 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,11 @@ The license applies to all entries newer than 2009-04-28. */ +2010-10-04 18:23 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl) + * harbour/src/rtl/fstemp.c + ! fixed typo in my last commit (#elif instead of #if) + Thanks to Itamar M. Lins Jr. for the info. + 2010-10-04 08:57 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/hbxbp/xbplistbox.prg ! Changed: the way context menu was being fired. diff --git a/harbour/src/rtl/fstemp.c b/harbour/src/rtl/fstemp.c index 3bd02cbd49..6345788e30 100644 --- a/harbour/src/rtl/fstemp.c +++ b/harbour/src/rtl/fstemp.c @@ -396,7 +396,7 @@ HB_ERRCODE hb_fsTempDir( char * pszTempDir ) } #else { -#elif !defined( HB_OS_OS2 ) +#if !defined( HB_OS_OS2 ) char szBuffer[ L_tmpnam ]; if( tmpnam( szBuffer ) != NULL )