Marcus Thiessel <thiessel(a)hpbbse.bbn.hp.com> writes:
Oliver Graf writes:
> A quick fix for the parse error in line 1110.
>
[...]
> + */
> if (transferInfo == NULL)
> return;
This won't help passing frame-x.c since transferInfo is nevertheless
unknown to the compiler.
It was a quick fix ;-) (without thinking -- --without-cde still does it).
This one will do... (I thought 5 seconds this time ;-)
Regards,
Oliver.
--- frame-x.c.orig Mon May 11 14:04:43 1998
+++ frame-x.c Mon May 11 18:36:02 1998
@@ -1105,10 +1105,11 @@
correct misc_user_event
- the data must be converted to the new format (URL/MIME)
*/
- return;
DtDndTransferCallbackStruct *transferInfo =
(DtDndTransferCallbackStruct *) callData;
+
+ return;
if (transferInfo == NULL)
return;