On Mon, 2009-07-27 at 18:58 +0100, Chris Young wrote: > > Modified: trunk/netsurf/render/html.h > > URL: > > http://source.netsurf-browser.org/trunk/netsurf/render/html.h?rev=8820&r1=8819&r2=8820&view=diff > > ============================================================================== > > --- trunk/netsurf/render/html.h (original) > > +++ trunk/netsurf/render/html.h Mon Jul 27 08:49:10 2009 > > @@ -136,7 +136,7 @@ > > /** Number of entries in stylesheet_content. */ > > unsigned int stylesheet_count; > > /** Stylesheets. Each may be 0. */ > > - struct content **stylesheet_content; > > + struct nscss_import *stylesheets; > > /**< Style selection context */ > > css_select_ctx *select_ctx; > > This has broken the Amiga build. I don't understand what needs to be > changed to fix it, as we now only have one pointer rather than an > array of pointers.
It's now an array of structs, one member of which is the content pointer. Fixed in r8827. J.
