> The two main ones are in jseng-moz.cpp... in the function > 1. Why is 'ssize_t rc;' used, instead of just 'int rc;'?
Because the manual page for read() says it returns type size_t. Implicitly casting that into an int, as in int rc, is no trouble so make that change if you wish. We're not going to be reading more than 2 gig at a shot. > 2. Why is '(short unsigned int *)uc_run' used instead > of '(const jschar *)uc_run'? don't know - I went for the actual type, but that's platform specific, so go ahead and use jschar * instead, it works. Karl Dahlke _______________________________________________ Edbrowse-dev mailing list [email protected] http://lists.the-brannons.com/mailman/listinfo/edbrowse-dev
