dbertoni    2003/01/06 09:29:30

  Modified:    c/samples/ApacheModuleXSLT mod_xslt.c
  Log:
  Fixed const problem.
  
  Revision  Changes    Path
  1.10      +2 -2      xml-xalan/c/samples/ApacheModuleXSLT/mod_xslt.c
  
  Index: mod_xslt.c
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/samples/ApacheModuleXSLT/mod_xslt.c,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- mod_xslt.c        4 Jan 2003 20:28:13 -0000       1.9
  +++ mod_xslt.c        6 Jan 2003 17:29:29 -0000       1.10
  @@ -187,9 +187,9 @@
   
        if(error)
        {
  +         const char* const   msg = XalanGetLastError(xalan);
   
  -         char *msg = XalanGetLastError(xalan);
  -         fprintf(stderr,"mod_xslt: %s: %s\n", r->filename,msg);
  +         fprintf(stderr,"mod_xslt: %s: %s\n", r->filename, msg);
   
                r->uri = filename;
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to