You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/04/08 13:22:22 UTC

arrow git commit: ARROW-793: [GLib] Fix indent

Repository: arrow
Updated Branches:
  refs/heads/master 8ae3283b2 -> 359110370


ARROW-793: [GLib] Fix indent

Author: Kouhei Sutou <ko...@clear-code.com>

Closes #509 from kou/glib-fix-indent and squashes the following commits:

5453fb6 [Kouhei Sutou] [GLib] Fix indent


Project: http://git-wip-us.apache.org/repos/asf/arrow/repo
Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/35911037
Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/35911037
Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/35911037

Branch: refs/heads/master
Commit: 35911037031e46784f4e585ac5922642351660c1
Parents: 8ae3283
Author: Kouhei Sutou <ko...@clear-code.com>
Authored: Sat Apr 8 09:22:16 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Sat Apr 8 09:22:16 2017 -0400

----------------------------------------------------------------------
 c_glib/arrow-glib/uint32-array.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/35911037/c_glib/arrow-glib/uint32-array.cpp
----------------------------------------------------------------------
diff --git a/c_glib/arrow-glib/uint32-array.cpp b/c_glib/arrow-glib/uint32-array.cpp
index d10f100..18a9aed 100644
--- a/c_glib/arrow-glib/uint32-array.cpp
+++ b/c_glib/arrow-glib/uint32-array.cpp
@@ -60,7 +60,7 @@ garrow_uint32_array_class_init(GArrowUInt32ArrayClass *klass)
  */
 guint32
 garrow_uint32_array_get_value(GArrowUInt32Array *array,
-                             gint64 i)
+                              gint64 i)
 {
   auto arrow_array = garrow_array_get_raw(GARROW_ARRAY(array));
   return static_cast<arrow::UInt32Array *>(arrow_array.get())->Value(i);