Re: Error when compiling html2thot.c with STANDALONE flag

In-reply-to: Your message of Sat, 02 May 1998 03:43:54 -0400."
             <Pine.OSF.3.96.980502153303.19187A-100000@umacap1.wkg2.umac.mo> 

You're right html2piv has not been tested since a while.

> ../../amaya/html2thot.c:8360: warning: assignment from incompatible
> pointer type
You have to replace 
             docURL = &htmlFileName;
by
             docURL = htmlFileName;

Could you add these local variables to the main procedure
   char               *buffer = NULL;
#ifdef HANDLE_COMPRESSED_FILES
   gzFile              stream = NULL;
   int                 bufsize = 2000;
   int                 res, c, diff, nbNul;
#endif
   boolean             beginning = TRUE;

Regards
  Irene.

Received on Monday, 4 May 1998 08:21:26 UTC