From 1188dd32c6ed3784d82497e200538ec76d2db50b Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 26 Jun 2009 18:13:27 +0000 Subject: [PATCH] 2009-06-25 20:12 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * source/common/hbhash.c ! Fixed error in prev commit. (strange that MSVC didn't complain) * mpkg_win.nsi + Added comment that this file shouldn't be used directly. --- harbour/ChangeLog | 8 ++++++++ harbour/mpkg_win.nsi | 5 +++++ harbour/source/common/hbhash.c | 2 +- 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/harbour/ChangeLog b/harbour/ChangeLog index c2e4465b3e..29d65a2b8f 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,14 @@ past entries belonging to author(s): Viktor Szakats. */ +2009-06-25 20:12 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * source/common/hbhash.c + ! Fixed error in prev commit. + (strange that MSVC didn't complain) + + * mpkg_win.nsi + + Added comment that this file shouldn't be used directly. + 2009-06-25 18:41 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * include/hbhash.h * contrib/hbcurl/hbcurl.c diff --git a/harbour/mpkg_win.nsi b/harbour/mpkg_win.nsi index c12ca39a0f..8c35996e12 100644 --- a/harbour/mpkg_win.nsi +++ b/harbour/mpkg_win.nsi @@ -7,6 +7,11 @@ ; ; Copyright 2009 Viktor Szakats (harbour.01 syenar.hu) ; See COPYING for licensing terms. +; +; NOTE: Do not try to use this script directly. It won't work. +; +; See INSTALL how to create installation packages for +; Windows/DOS platforms. ; --------------------------------------------------------------- ; TODO: tests/examples diff --git a/harbour/source/common/hbhash.c b/harbour/source/common/hbhash.c index 58bb550364..4e1c23f494 100644 --- a/harbour/source/common/hbhash.c +++ b/harbour/source/common/hbhash.c @@ -179,7 +179,7 @@ HB_HASH_TABLE_PTR hb_hashTableResize( HB_HASH_TABLE_PTR pTable, ULONG ulNewSize } /* add a new value into th ehash table */ -BOOL hb_hashTableAdd( HB_HASH_TABLE_PTR pTable, void * pKey, void * pValue ) +BOOL hb_hashTableAdd( HB_HASH_TABLE_PTR pTable, const void * pKey, const void * pValue ) { ULONG ulKey; HB_HASH_ITEM_PTR pItem;