blob: 698a5d82b38bac125767a6cfa56cbce4f3b77224 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
From f7fcc06097d862ca3bc6840b550a53e0b02f139f Mon Sep 17 00:00:00 2001
From: Sergei Trofimovich <slyfox@gentoo.org>
Date: Fri, 22 Jul 2011 12:36:06 +0300
Subject: [PATCH] fix build failure against ghc-7.2
src/Plugins/Monitors/Top.hs:140:17:
Illegal bang-pattern (use -XBangPatterns):
! r
Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org>
---
src/Plugins/Monitors/Top.hs | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/src/Plugins/Monitors/Top.hs b/src/Plugins/Monitors/Top.hs
index e45210c..6001164 100644
--- a/src/Plugins/Monitors/Top.hs
+++ b/src/Plugins/Monitors/Top.hs
@@ -13,6 +13,7 @@
-----------------------------------------------------------------------------
{-# LANGUAGE ForeignFunctionInterface #-}
+{-# LANGUAGE BangPatterns #-}
module Plugins.Monitors.Top (startTop, topMemConfig, runTopMem) where
--
1.7.3.4
|