aboutsummaryrefslogtreecommitdiffstats
path: root/cshared/file_cshared.go
diff options
context:
space:
mode:
authorferhat elmas <elmas.ferhat@gmail.com>2016-11-07 20:32:00 +0100
committerMáximo Cuadros <mcuadros@gmail.com>2016-11-07 20:32:00 +0100
commit7b0f65f5f5486f5e32f749826744929813734e24 (patch)
treeda3d4bbf7caf3fe5d712fb3a1df9c42fb549ee2c /cshared/file_cshared.go
parent0ff9ef2b44c53e557c78bde0fd9c29847e5f0e23 (diff)
downloadgo-git-7b0f65f5f5486f5e32f749826744929813734e24.tar.gz
gofmt simplify (#111)
Diffstat (limited to 'cshared/file_cshared.go')
-rw-r--r--cshared/file_cshared.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cshared/file_cshared.go b/cshared/file_cshared.go
index 2a6678a..8191289 100644
--- a/cshared/file_cshared.go
+++ b/cshared/file_cshared.go
@@ -72,7 +72,7 @@ func c_File_Read(b uint64) (int, *C.char) {
if err != nil {
return ErrorCodeInternal, C.CString(err.Error())
}
- data, err := ioutil.ReadAll(reader)
+ data, err := ioutil.ReadAll(reader)
reader.Close()
if err != nil {
return ErrorCodeInternal, C.CString(err.Error())