fix return value.

This commit is contained in:
Shirou WAKAYAMA 2014-04-28 15:31:23 +09:00
parent bd438932ad
commit 609c103d0e
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ func ReadLines(filename string) ([]string, error) {
line, err = r.ReadString('\n')
}
return ret, err
return ret, nil
}
func byteToString(orig []byte) string {