Added a cast to xgrab call

This commit is contained in:
Paul Tucker
1999-10-25 20:48:10 +00:00
parent e2d451b48f
commit dd856da5ab
2 changed files with 7 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
19991025-12:30 EDT Paul Tucker <ptucker@sympatico.ca>
* source/tools/ctchksum.c
* added a cast
* makefile.vc
+ source/tools/ctchksum.c
19991025-22:05 GMT+1 Bruno Cantero <bruno@issnet.net>
* source/rtl/dummy.prg
- Removed __dbZap() function.

View File

@@ -37,7 +37,7 @@
HARBOUR HB_CT_CHECKSUM( void )
{
BYTE * pbyString = hb_parc( 1 );
BYTE * pbyString = (BYTE *)hb_parc( 1 );
ULONG ulLen = hb_parclen( 1 );
ULONG ulPos;
ULONG ulResult = 0;