From: Ian Lynagh Date: Fri, 27 Feb 2009 01:02:30 +0000 (+0000) Subject: In +RTS --info output, use YES rather than Yes X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=f48b8ba55be1f05a0a8e0cc3348ba44ca86c554c;p=ghc-hetmet.git In +RTS --info output, use YES rather than Yes --- diff --git a/rts/RtsUtils.c b/rts/RtsUtils.c index 4d78bcb..4d3724d 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);