From ef709d6e77737365a842cead763ec3989b2b8706 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Wed, 15 Feb 2012 23:08:21 +0100 Subject: [PATCH] remove empty line --- zscan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zscan.go b/zscan.go index 08c220f8..a5ac430a 100644 --- a/zscan.go +++ b/zscan.go @@ -715,6 +715,7 @@ func typeToInt(token string) (uint16, bool) { return uint16(typ), true } +// Parse things like 2w, 2m, etc, Return the time in seconds. func stringToTtl(l lex, f string) (uint32, bool) { s := uint32(0) i := uint32(0) @@ -750,5 +751,4 @@ func appendOrigin(name, origin string) string { return name + origin } return name + "." + origin - }