[MLton-commit] r4296

Matthew Fluet MLton@mlton.org
Fri, 6 Jan 2006 13:11:13 -0800


Typo
----------------------------------------------------------------------

U   mlton/branches/on-20050822-x86_64-branch/runtime/util/read_write.h

----------------------------------------------------------------------

Modified: mlton/branches/on-20050822-x86_64-branch/runtime/util/read_write.h
===================================================================
--- mlton/branches/on-20050822-x86_64-branch/runtime/util/read_write.h	2006-01-06 21:08:58 UTC (rev 4295)
+++ mlton/branches/on-20050822-x86_64-branch/runtime/util/read_write.h	2006-01-06 21:11:09 UTC (rev 4296)
@@ -80,7 +80,7 @@
   } else if (sizeof(uintmax_t) == 8) {
     sprintf (buf, "0x%016"PRIxMAX, u);
   } else {
-    sprintf (buf, "0x"PRIxMAX, u);
+    sprintf (buf, "0x%"PRIxMAX, u);
   }
   writeString (fd, buf);
 }