blob: bc183fc496a21fb6c800648fe256b588c18109a7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- TclPrimGhc.hs.orig Tue Oct 21 17:29:21 2003
+++ TclPrimGhc.hs Tue Oct 21 17:29:43 2003
@@ -42,7 +42,7 @@
writeElt pstr 0 str
return pstr
where
- len = Word.intToWord32 (length str + 1)
+ len = fromIntegral (length str + 1)
writeElt addr n [] = writeCharOffAddr addr n '\0'
writeElt addr n (v :vs) = do
|