2010-03-13 09:18 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

* harbour/src/vm/hvmall.c
    * minor cleanup
This commit is contained in:
Przemyslaw Czerpak
2010-03-13 08:18:32 +00:00
parent 12d1e1cc88
commit cac5f29b2a
2 changed files with 6 additions and 2 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-03-13 09:18 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/src/vm/hvmall.c
* minor cleanup
2010-03-13 09:02 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbstack.h
* harbour/src/vm/estack.c

View File

@@ -87,9 +87,9 @@
# if defined( HB_MT_VM )
# if defined( HB_USE_TLS )
# if defined( __BORLANDC__ )
static PHB_STACK HB_TLS_ATTR hb_stack_ptr;
static PHB_STACK HB_TLS_ATTR hb_stack_ptr = NULL;
# else
static HB_TLS_ATTR PHB_STACK hb_stack_ptr;
static HB_TLS_ATTR PHB_STACK hb_stack_ptr = NULL;
# endif
# else
static HB_TLS_KEY hb_stack_key;