dbertoni    2003/03/10 14:00:32

  Modified:    c/Tests/Threads ThreadTest.cpp
  Log:
  Fixed signed/unsigned mismatch.
  
  Revision  Changes    Path
  1.28      +5 -5      xml-xalan/c/Tests/Threads/ThreadTest.cpp
  
  Index: ThreadTest.cpp
  ===================================================================
  RCS file: /home/cvs/xml-xalan/c/Tests/Threads/ThreadTest.cpp,v
  retrieving revision 1.27
  retrieving revision 1.28
  diff -u -r1.27 -r1.28
  --- ThreadTest.cpp    27 Nov 2002 22:36:29 -0000      1.27
  +++ ThreadTest.cpp    10 Mar 2003 22:00:32 -0000      1.28
  @@ -166,7 +166,7 @@
        {
        }
   
  -     unsigned int                    m_threadNumber;
  +     long                                    m_threadNumber;
   
        SynchronizedCounter*    m_counter;
   
  @@ -263,7 +263,7 @@
   
        try
        {
  -             XALAN_USING_XALAN(UnsignedLongToDOMString)
  +             XALAN_USING_XALAN(LongToDOMString)
                XALAN_USING_XALAN(XalanTransformer)
   
                // Our input file.  The assumption is that the executable will 
be run
  @@ -272,7 +272,7 @@
                // Generate the output file name.
                const XalanDOMString    theOutputFile(
                                XalanDOMString("birds") +
  -                             
UnsignedLongToDOMString(theInfo->m_threadNumber) +
  +                             LongToDOMString(theInfo->m_threadNumber) +
                                XalanDOMString(".out"));
   
                // Create a transformer...
  @@ -327,7 +327,7 @@
   
        try
        {
  -             XALAN_USING_XALAN(UnsignedLongToDOMString)
  +             XALAN_USING_XALAN(LongToDOMString)
                XALAN_USING_XALAN(XalanTransformer)
   
                // Our input file.  The assumption is that the executable will 
be run
  @@ -336,7 +336,7 @@
                // Generate the output file name.
                const XalanDOMString    theOutputFile(
                                XalanDOMString("birds") +
  -                             
UnsignedLongToDOMString(theInfo->m_threadNumber) +
  +                             LongToDOMString(theInfo->m_threadNumber) +
                                XalanDOMString(".out"));
   
                // Create a transformer...
  
  
  

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

Reply via email to