From 87059405ea5d1448f5a154f484349652ac807e03 Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Mon, 14 May 2012 01:40:05 +1000 Subject: [PATCH] simplify deref expression Change-Id: I1738c7c47e79b460f3c13626b1af9e96eb26f73f --- server/camlistored/camlistored.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/camlistored/camlistored.go b/server/camlistored/camlistored.go index 375964ef8..aab49b937 100644 --- a/server/camlistored/camlistored.go +++ b/server/camlistored/camlistored.go @@ -281,7 +281,7 @@ func main() { ws := webserver.New() baseURL := config.RequiredString("baseURL") - listen := *(webserver.Listen) + listen := *webserver.Listen if listen == "" { // if command line was empty, use value in config listen = strings.TrimLeft(baseURL, "http://")