Ticket #25 (new defect)

Opened 1 year ago

bintod doesn't compile with new Tango IO

Reported by: teqdruid Assigned to: keinfarbton
Priority: major Milestone:
Component: TioPort Version:
Keywords: Cc:

Description

Small bug. Here's the patch:

teqdruid@home ~/workspace/tioport $ svn diff
Index: bintod/bintod.d
===================================================================
--- bintod/bintod.d     (revision 353)
+++ bintod/bintod.d     (working copy)
@@ -178,7 +178,7 @@
         }
         FileConduit dataFc = new FileConduit( fn, FileConduit.ReadExisting );
         ubyte[]     data   = new ubyte[] (dataFc.length);
-        dataFc.read(data);
+        dataFc.input.read(data);
         dataFc.close();
         char[]      showLine;
         const       LINE_ITEMCOUNT = 16;