On Friday, 11 May 2007 15:03, Tim Dijkstra wrote:
> On Thu, 10 May 2007 22:17:29 +0200
> "Rafael J. Wysocki" <[EMAIL PROTECTED]> wrote:
> 
> > > - } else if (!splashy_open()) {
> > > + } else if (!(error = splashy_open(mode))) {  
> > 
> > I'd prefer
> > 
> >     error = error = splashy_open(mode);
> >     if (error) {
> > 
> > and analogously below.

Sorry, should be

        error = splashy_open(mode);
        if (error) {


Greetings,
Rafael

-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
Suspend-devel mailing list
Suspend-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/suspend-devel

Reply via email to