[Pkg-ace-commits] [pkg-ace] r576 - trunk/debian/patches

tgg at alioth.debian.org tgg at alioth.debian.org
Mon Mar 24 15:19:56 UTC 2008


Author: tgg
Date: 2008-03-24 15:19:56 +0000 (Mon, 24 Mar 2008)
New Revision: 576

Modified:
   trunk/debian/patches/13-fix-fox-errors.dpatch
Log:
rework patch 13


Modified: trunk/debian/patches/13-fix-fox-errors.dpatch
===================================================================
--- trunk/debian/patches/13-fix-fox-errors.dpatch	2008-03-16 20:09:17 UTC (rev 575)
+++ trunk/debian/patches/13-fix-fox-errors.dpatch	2008-03-24 15:19:56 UTC (rev 576)
@@ -12,19 +12,19 @@
    bool f=false;
    if(sel==SEL_IO_READ){
 -    dispatch_set.rd_mask_.set_bit(ACE_HANDLE(handle));
-+    dispatch_set.rd_mask_.set_bit(ACE_HANDLE((FXival)handle));
++    dispatch_set.rd_mask_.set_bit(ACE_HANDLE(reinterpret_cast<FXival>(handle)));
      f=true;
    }
    else
    if(sel==SEL_IO_WRITE){
 -    dispatch_set.wr_mask_.set_bit(ACE_HANDLE(handle));
-+    dispatch_set.wr_mask_.set_bit(ACE_HANDLE((FXival)handle));
++    dispatch_set.wr_mask_.set_bit(ACE_HANDLE(reinterpret_cast<FXival>(handle)));
      f=true;
    }
    else
    if(sel==SEL_IO_EXCEPT){
 -    dispatch_set.ex_mask_.set_bit(ACE_HANDLE(handle));
-+    dispatch_set.ex_mask_.set_bit(ACE_HANDLE((FXival)handle));
++    dispatch_set.ex_mask_.set_bit(ACE_HANDLE(reinterpret_cast<FXival>(handle)));
      f=true;
    };
    if(f) dispatch (1, dispatch_set);




More information about the Pkg-ace-commits mailing list