[Gambas-user] Error in rev. #5473

Bruce bbruen at ...2308...
Sun Dec 30 00:46:59 CET 2012


In gbx, source file gbc_value.c 
572: __p2s:
573:	#if OS_64BITS
574:		value->_long.value = (int64_t)(intptr_t)value->_pointer.value;
575:		goto __l2s;
576:	#else
577:		value->_int.value = (int)(intptr_t)value->_pointer.value;
578:		goto __i2s;
579:	#endif

Compile error occurs at line 577. Sorry I lost the error message.

I believe it should be 
577:	value->_integer.value = (int)(intptr_t)value->_pointer.value;

Bruce





More information about the User mailing list