UnixOperatingSystem.st
changeset 12833 e97fa81621d6
parent 12832 fd20ec4fb909
child 12834 cad1c35e6458
--- a/UnixOperatingSystem.st	Thu Apr 01 11:14:38 2010 +0200
+++ b/UnixOperatingSystem.st	Thu Apr 01 11:26:08 2010 +0200
@@ -9420,7 +9420,7 @@
 	    if (fd != nil) {
 		if (! __isSmallInteger(fd)) {
 		    if (@global(InfoPrinting) == true) {
-			fprintf(stderr, "OS [warning]: funny read-fd (0x%x) given to select\n", fd);
+			fprintf(stderr, "OS [warning]: funny read-fd (0x%lx) given to select\n", (unsigned long)fd);
 		    }
 		} else {
 		    int f;
@@ -9432,7 +9432,7 @@
 			numFds++;
 		    } else {
 			if (@global(InfoPrinting) == true) {
-			    fprintf(stderr, "OS [warning]: huge read-fd (0x%x) given to select\n", fd);
+			    fprintf(stderr, "OS [warning]: huge read-fd (0x%lx) given to select\n", (unsigned long)fd);
 			}
 		    }
 		}
@@ -9454,7 +9454,7 @@
 	    if (fd != nil) {
 		if (! __isSmallInteger(fd)) {
 		    if (@global(InfoPrinting) == true) {
-			fprintf(stderr, "OS [warning]: funny write-fd (0x%x) given to select\n", fd);
+			fprintf(stderr, "OS [warning]: funny write-fd (0x%lx) given to select\n", (unsigned long)fd);
 		    }
 		} else {
 		    int f;
@@ -9466,7 +9466,7 @@
 			numFds++;
 		    } else {
 			if (@global(InfoPrinting) == true) {
-			    fprintf(stderr, "OS [warning]: huge write-fd (0x%x) given to select\n", fd);
+			    fprintf(stderr, "OS [warning]: huge write-fd (0x%lx) given to select\n", (unsigned long)fd);
 			}
 		    }
 		}
@@ -9488,7 +9488,7 @@
 	    if (fd != nil) {
 		if (! __isSmallInteger(fd)) {
 		    if (@global(InfoPrinting) == true) {
-			fprintf(stderr, "OS [warning]: funny except-fd (0x%x) given to select\n", fd);
+			fprintf(stderr, "OS [warning]: funny except-fd (0x%lx) given to select\n", (unsigned long)fd);
 		    }
 		} else {
 		    int f;
@@ -9500,7 +9500,7 @@
 			numFds++;
 		    } else {
 			if (@global(InfoPrinting) == true) {
-			    fprintf(stderr, "OS [warning]: huge except-fd (0x%x) given to select\n", fd);
+			    fprintf(stderr, "OS [warning]: huge except-fd (0x%lx) given to select\n", (unsigned long)fd);
 			}
 		    }
 		}
@@ -9649,7 +9649,7 @@
 		if (fd != nil) {
 		    if (! __isSmallInteger(fd)) {
 			if (@global(InfoPrinting) == true) {
-			    fprintf(stderr, "OS [warning]: funny read-fd (0x%x) given to select\n", fd);
+			    fprintf(stderr, "OS [warning]: funny read-fd (0x%lx) given to select\n", (unsigned long)fd);
 			}
 		    } else {
 			f = __intVal(fd);
@@ -9659,7 +9659,7 @@
 			    numFds++;
 			} else {
 			    if (@global(InfoPrinting) == true) {
-				fprintf(stderr, "OS [warning]: huge read-fd (0x%x) given to select\n", fd);
+				fprintf(stderr, "OS [warning]: huge read-fd (0x%lx) given to select\n", (unsigned long)fd);
 			    }
 			}
 		    }
@@ -9677,7 +9677,7 @@
 		if (fd != nil) {
 		    if (! __isSmallInteger(fd)) {
 			if (@global(InfoPrinting) == true) {
-			    fprintf(stderr, "OS [warning]: funny write-fd (0x%x) given to select\n", fd);
+			    fprintf(stderr, "OS [warning]: funny write-fd (0x%lx) given to select\n", (unsigned long)fd);
 			}
 		    } else {
 			f = __intVal(fd);
@@ -9687,7 +9687,7 @@
 			    numFds++;
 			} else {
 			    if (@global(InfoPrinting) == true) {
-				fprintf(stderr, "OS [warning]: huge write-fd (0x%x) given to select\n", fd);
+				fprintf(stderr, "OS [warning]: huge write-fd (0x%lx) given to select\n", (unsigned long)fd);
 			    }
 			}
 		    }
@@ -9705,7 +9705,7 @@
 		if (fd != nil) {
 		    if (! __isSmallInteger(fd)) {
 			if (@global(InfoPrinting) == true) {
-			    fprintf(stderr, "OS [warning]: funny except-fd (0x%x) given to select\n", fd);
+			    fprintf(stderr, "OS [warning]: funny except-fd (0x%lx) given to select\n", (unsigned long)fd);
 			}
 		    } else {
 			f = __intVal(fd);
@@ -9715,7 +9715,7 @@
 			    numFds++;
 			} else {
 			    if (@global(InfoPrinting) == true) {
-				fprintf(stderr, "OS [warning]: huge except-fd (0x%x) given to select\n", fd);
+				fprintf(stderr, "OS [warning]: huge except-fd (0x%lx) given to select\n", (unsigned long)fd);
 			    }
 			}
 		    }
@@ -12654,11 +12654,11 @@
 !UnixOperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.266 2010-04-01 09:14:38 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.267 2010-04-01 09:26:08 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.266 2010-04-01 09:14:38 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/UnixOperatingSystem.st,v 1.267 2010-04-01 09:26:08 stefan Exp $'
 ! !
 
 UnixOperatingSystem initialize!