On Tuesday 20 January 2004 14:09, Francois Gouget wrote:
include/winuser.h: DWORD[CCHILDREN_TITLEBAR+1]: can't parse type ('DWORD') ('CCHILDREN_TITLEBAR+1') Can't use string ("4") as a SCALAR ref while "strict refs" in use at tools/winapi/c_type.pm line 283.
That code is mixing up the use of a variable holding a string and a variable holding a reference. Put otherwise it forget's to dereference a scalar ref (similar to a C pointer variable) before using it. Patch below fixes it.
-Hans
Changelog: Fix misuse of scalar reference variable.