diff dwt/browser/InputStream.d @ 345:5abc6f7f7a95

Fixups
author John Reimer <terminal.node@gmail.com>
date Tue, 28 Oct 2008 22:07:01 -0700
parents 96243e3ebcf0
children 2e591eb01162
line wrap: on
line diff
--- a/dwt/browser/InputStream.d	Mon Oct 27 22:41:01 2008 -0700
+++ b/dwt/browser/InputStream.d	Tue Oct 28 22:07:01 2008 -0700
@@ -126,7 +126,7 @@
     PRUint32 cnt = max;
     while (cnt > 0) {
         PRUint32 aWriteCount;
-        nsresult rc = aWrite (cast(nsIInputStream)this, aClosure, buffer.ptr, index, cnt, &aWriteCount);
+        nsresult rc = aWriter (cast(nsIInputStream)this, aClosure, buffer.ptr, index, cnt, &aWriteCount);
         if (rc !is XPCOM.NS_OK) break;
         index += aWriteCount;
         cnt -= aWriteCount;