summaryrefslogtreecommitdiff
path: root/src/server/PGFService.hs
diff options
context:
space:
mode:
authorhallgren <hallgren@chalmers.se>2017-05-10 12:59:57 +0000
committerhallgren <hallgren@chalmers.se>2017-05-10 12:59:57 +0000
commit766bc09058926ff9c61496b5f7f0c0852a4b00d5 (patch)
tree1f31e0f3c8ee17a2f002b16fc967aa360f20c6d2 /src/server/PGFService.hs
parent2675aec1f9e76cdb12fff1ff1b109f819df47e33 (diff)
PGFService.hs: fix problem when compiling without C run-time support
The previous patch introduced an indentation problem in the code that is used when compiling without C run-time support.
Diffstat (limited to 'src/server/PGFService.hs')
-rw-r--r--src/server/PGFService.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/PGFService.hs b/src/server/PGFService.hs
index a63af3dd8..0cf67c5c8 100644
--- a/src/server/PGFService.hs
+++ b/src/server/PGFService.hs
@@ -88,7 +88,7 @@ data Caches = Caches { pgfCache::Cache PGF,
cncLabelsCache::Cache CncLabels }
newPGFCache _ = do pgfCache <- newCache' PGF.readPGF
lblCache <- newCache' (fmap PGF.getDepLabels . readFile)
- clblCache <- newCache'(fmap PGF.getCncDepLabels .readFile)
+ clblCache <- newCache'(fmap PGF.getCncDepLabels .readFile)
return $ Caches pgfCache lblCache clblCache
flushPGFCache c = flushCache (pgfCache c)