summaryrefslogtreecommitdiff
path: root/libraries/base/System/Info.hs
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2008-08-20 23:39:58 +0000
committerIan Lynagh <igloo@earth.li>2008-08-20 23:39:58 +0000
commit18328c7c49369cf61e70ab3d7dac48816de28384 (patch)
treec92575b66c673cfb4814edf6dd2cd65ad839ca29 /libraries/base/System/Info.hs
parentf050ec47c4291d7d1a85c9b5e78f6bf8639c47c0 (diff)
downloadhaskell-18328c7c49369cf61e70ab3d7dac48816de28384.tar.gz
Fix more warnings
Diffstat (limited to 'libraries/base/System/Info.hs')
-rw-r--r--libraries/base/System/Info.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/base/System/Info.hs b/libraries/base/System/Info.hs
index 597f2c8266..b38aea265f 100644
--- a/libraries/base/System/Info.hs
+++ b/libraries/base/System/Info.hs
@@ -27,8 +27,8 @@ import Data.Version
-- | The version of 'compilerName' with which the program was compiled
-- or is being interpreted.
compilerVersion :: Version
-compilerVersion = Version {versionBranch=[maj,min], versionTags=[]}
- where (maj,min) = compilerVersionRaw `divMod` 100
+compilerVersion = Version {versionBranch=[major, minor], versionTags=[]}
+ where (major, minor) = compilerVersionRaw `divMod` 100
-- | The operating system on which the program is running.
os :: String