diff dmd/File.d @ 16:5c9b78899f5d

Implemented methods for Tuples, fixed some linking issues.
author Robert Clipsham <robert@octarineparrot.com>
date Sun, 04 Apr 2010 22:41:11 +0100
parents 2cc604139636
children fd4acc376c45
line wrap: on
line diff
--- a/dmd/File.d	Sun Apr 04 02:15:33 2010 +0100
+++ b/dmd/File.d	Sun Apr 04 22:41:11 2010 +0100
@@ -86,7 +86,8 @@
 		int fd = open(toStringz(name), O_RDONLY);
 		if (fd == -1) {
 			result = errno;
-			//printf("\topen error, errno = %d\n", errno);
+			printf("file: %s\n", toStringz(name));
+			printf("\topen error, errno = %d\n", errno);
 			goto err1;
 		}