You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by db...@locus.apache.org on 2000/11/21 23:33:49 UTC

cvs commit: xml-xalan/c/src/XSLT ExtensionFunctionHandler.cpp

dbertoni    00/11/21 14:33:49

  Modified:    c/src/XSLT ExtensionFunctionHandler.cpp
  Log:
  Fixed return statement.
  
  Revision  Changes    Path
  1.8       +1 -1      xml-xalan/c/src/XSLT/ExtensionFunctionHandler.cpp
  
  Index: ExtensionFunctionHandler.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/src/XSLT/ExtensionFunctionHandler.cpp,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ExtensionFunctionHandler.cpp	2000/11/21 21:10:02	1.7
  +++ ExtensionFunctionHandler.cpp	2000/11/21 22:33:49	1.8
  @@ -170,7 +170,7 @@
   		startupComponent();
   	}
   
  -	return 0;
  +	return XObjectPtr();
   }