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/06/01 02:54:36 UTC

arrow git commit: ARROW-1075: [GLib] Fix build error on macOS

Repository: arrow
Updated Branches:
  refs/heads/master 8229688a6 -> 5c155c353


ARROW-1075: [GLib] Fix build error on macOS

int64_t is "long long" but gint64 is "long".

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

Closes #719 from kou/glib-fix-build-error-on-macos and squashes the following commits:

ee51ffb [Kouhei Sutou] [GLib] Fix build error on macOS


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

Branch: refs/heads/master
Commit: 5c155c3538b0e04b99201a204907e548757a68e1
Parents: 8229688
Author: Kouhei Sutou <ko...@clear-code.com>
Authored: Wed May 31 22:54:22 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Wed May 31 22:54:22 2017 -0400

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


http://git-wip-us.apache.org/repos/asf/arrow/blob/5c155c35/c_glib/arrow-glib/file.cpp
----------------------------------------------------------------------
diff --git a/c_glib/arrow-glib/file.cpp b/c_glib/arrow-glib/file.cpp
index 7753393..e05743b 100644
--- a/c_glib/arrow-glib/file.cpp
+++ b/c_glib/arrow-glib/file.cpp
@@ -76,7 +76,7 @@ garrow_file_tell(GArrowFile *file,
 {
   auto arrow_file = garrow_file_get_raw(file);
 
-  gint64 position;
+  int64_t position;
   auto status = arrow_file->Tell(&position);
   if (garrow_error_check(error, status, "[io][file][tell]")) {
     return position;