Merge pull request #45 from deweerdt/master

Add a panic clause to fix 'missing return' error
This commit is contained in:
Miek Gieben 2013-06-18 10:57:52 -07:00
commit 76dd2f8220
1 changed files with 1 additions and 0 deletions

View File

@ -303,4 +303,5 @@ func (c Class) String() string {
} else {
return "CLASS" + strconv.Itoa(int(c))
}
panic("dns: not reached")
}