diff options
author | Ian Lynagh <igloo@earth.li> | 2009-02-27 01:02:30 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-02-27 01:02:30 +0000 |
commit | f48b8ba55be1f05a0a8e0cc3348ba44ca86c554c (patch) | |
tree | 9db7ed4ce9de13210bd7d950bba1517eb8d72d51 /rts/RtsUtils.c | |
parent | 00fe691ba258b2d9c8d5d85a3dffc0224b426dd8 (diff) | |
download | haskell-f48b8ba55be1f05a0a8e0cc3348ba44ca86c554c.tar.gz |
In +RTS --info output, use YES rather than Yes
Diffstat (limited to 'rts/RtsUtils.c')
-rw-r--r-- | rts/RtsUtils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c index 4d78bcb360..4d3724df3f 100644 --- a/rts/RtsUtils.c +++ b/rts/RtsUtils.c @@ -481,7 +481,7 @@ static void mkRtsInfoPair(char *key, char *val) { void printRtsInfo(void) { /* The first entry is just a hack to make it easy to get the * commas right */ - printf(" [(\"GHC RTS\", \"Yes\")\n"); + printf(" [(\"GHC RTS\", \"YES\")\n"); mkRtsInfoPair("GHC version", ProjectVersion); mkRtsInfoPair("RTS way", RtsWay); mkRtsInfoPair("Host platform", HostPlatform); |