Update of /cvsroot/monetdb/pathfinder/compiler/debug
In directory 
sfp-cvsdas-4.v30.ch3.sourceforge.com:/tmp/cvs-serv16503/compiler/debug

Modified Files:
      Tag: XQFT
        logdebug.c 
Log Message:
propagated changes of Tuesday Apr 13 2010 - Wednesday Apr 14 2010
from the development trunk to the XQFT branch

  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  2010/04/13 - ts-tum: compiler/debug/logdebug.c,1.136
  -- Value-Attribute of Property-Node is optional now.
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Index: logdebug.c
===================================================================
RCS file: /cvsroot/monetdb/pathfinder/compiler/debug/logdebug.c,v
retrieving revision 1.133.2.2
retrieving revision 1.133.2.3
diff -u -d -r1.133.2.2 -r1.133.2.3
--- logdebug.c  18 Mar 2010 11:29:17 -0000      1.133.2.2
+++ logdebug.c  14 Apr 2010 13:31:45 -0000      1.133.2.3
@@ -2785,8 +2785,13 @@
        }
        nestSpaces[nest] = '\0';
 
-       fprintf (f, "%s<property name=\"%s\" value=\"%s\"",
-                       nestSpaces, property.name, property.value);
+       fprintf (f, "%s<property name=\"%s\"",
+                       nestSpaces, property.name);
+       if (property.value)
+       {
+           fprintf (f, " value=\"%s\"",
+                       property.value);
+       }
        if (property.properties)
        {
                fprintf (f, ">\n");


------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Monetdb-pf-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/monetdb-pf-checkins

Reply via email to