From 4dc59eed6a7c3538ad90ba1b92a2e24ae5781f88 Mon Sep 17 00:00:00 2001 From: John Mulligan Date: Mon, 28 Jun 2021 11:08:18 -0400 Subject: [PATCH] rados: naming conventions: fixes in Read function Fix up variable names that don't meet Go standards. Signed-off-by: John Mulligan --- rados/ioctx.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rados/ioctx.go b/rados/ioctx.go index d6a53b0..d707c61 100644 --- a/rados/ioctx.go +++ b/rados/ioctx.go @@ -182,8 +182,8 @@ func (ioctx *IOContext) Append(oid string, data []byte) error { // Read reads up to len(data) bytes from the object with key oid starting at byte // offset offset. It returns the number of bytes read and an error, if any. func (ioctx *IOContext) Read(oid string, data []byte, offset uint64) (int, error) { - c_oid := C.CString(oid) - defer C.free(unsafe.Pointer(c_oid)) + coid := C.CString(oid) + defer C.free(unsafe.Pointer(coid)) var buf *C.char if len(data) > 0 { @@ -192,7 +192,7 @@ func (ioctx *IOContext) Read(oid string, data []byte, offset uint64) (int, error ret := C.rados_read( ioctx.ioctx, - c_oid, + coid, buf, (C.size_t)(len(data)), (C.uint64_t)(offset))