Hi,
some recent warning fixes break cygwin compiling.
e.g. in lib/Xmu/StrToCurs.c:172
a printf("%lu", sizeof(...)) was changed to
printf("%lu", (ulong)sizeof(...))
and in lib/Xmu/WidgetNode.c
But ulong is not defined on cygwin. What is the correct fix for this.
Change the printf type to %u (which might break on 64 bit architectures)
or using (unsigned long) or defining ulong for cygwin where it's needed?
bye
ago
--
[EMAIL PROTECTED]
http://www.gotti.org ICQ: 126018723
_______________________________________________
Xpert mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/xpert