ImageReader.st
changeset 3468 b7e913629327
parent 3386 b9294699dbcf
child 3489 60e6b6ded0b3
--- a/ImageReader.st	Fri Aug 17 14:45:36 2001 +0200
+++ b/ImageReader.st	Tue Aug 21 11:27:53 2001 +0200
@@ -1743,8 +1743,8 @@
 	    if (--__nOut == 0) {
 #ifdef DEBUG
 		if (__outP >= outEnd) {
-		 printf("oops\n");
-		 goto fail;
+		    fprintf(stderr, "oops %d\n", __LINE__);
+		    goto fail;
 		}
 #endif
 		*__outP = __outBits;
@@ -1760,8 +1760,8 @@
 
 #ifdef DEBUG
 	    if (__outP >= outEnd) {
-	     printf("oops2\n");
-	     goto fail;
+		fprintf(stderr, "oops2 %d\n", __LINE__);
+	        goto fail;
 	    }
 #endif
 	    *__outP = __outBits;
@@ -2147,5 +2147,5 @@
 !ImageReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/ImageReader.st,v 1.73 2000-11-23 17:11:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/ImageReader.st,v 1.74 2001-08-21 09:27:53 cg Exp $'
 ! !