PGFService.hs: fix compilation problem when C run-time support is omitted

This commit is contained in:
hallgren
2016-05-26 13:56:43 +00:00
parent cfdd9621ff
commit 9f1da17d06

View File

@@ -521,7 +521,7 @@ errorMissingId = badRequest "Missing identifier" ""
notFound = throw 404 "Not found"
badRequest = throw 400
--serverError = throw 500
serverError = throw 500
throw code msg extra =
throwCGIError code msg [msg ++(if null extra then "" else ": "++extra)]