<<< Date Index >>>     <<< Thread Index >>>

Re: 1.5.8 build failure on Solaris 8



Hello,

> >   return conn->open (conn);
                       ~
I bet my ass, that if you drop that blanc it works. And if not I am rid
of my fat ass. :-)

This is from the coding style I use:

  - nach reservierten Woertern (z.B. if, while, ...) kommt *ein* Space vor
    der Klammer auf. Z.B.:

        if (x) ...
        while (y) ...

    nach Funktionsnamen (z.B. exit, func, ...) kommt *kein* Space vor
    der Klammer. Z.B.:

        exit(1)
        func(a, b)

    Dies macht Sinn (sonst funktionieren Makros u.U. nicht so, wie
    gedacht)!
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

I don't have time to translate it.

        Thomas