Re: ode 0.9.0 good to go

Remi Ricard <[email protected]> Fri, 12 Oct 2007 08:23:13 -0400
Newsgroups gmane.comp.lib.ode
Message-ID <[email protected]>
Hi,

Stop the press !!!!!

There is still a small bug in export-dif.cpp
A closing "}" is never printed.

This was documented in my patch #1801388, but this patch was never applied.

This is the diff:

src% svn diff export-dif.cpp
Index: export-dif.cpp
===================================================================
--- export-dif.cpp      (revision 1285)
+++ export-dif.cpp      (working copy)
@@ -548,6 +548,7 @@
                        fprintf 
(file,"%sbody[%d]",prefix,j->node[0].body->tag)

                if ( j->node[1].body )
                        fprintf 
(file,",%sbody[%d]",prefix,j->node[1].body->tag
;
+               fprintf (file,"}\n");

                switch (j->vtable->typenum) {
                        case dJointTypeBall: printBall (c,j); break;

Remi