You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by gi...@apache.org on 2022/12/02 13:47:58 UTC

[arrow-nanoarrow] branch main updated: Update dist/ for commit 3a04ea08fe636b0ba58bd7c29575570d37266092

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-nanoarrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 4ca2c2f  Update dist/ for commit 3a04ea08fe636b0ba58bd7c29575570d37266092
4ca2c2f is described below

commit 4ca2c2f3584be603cecfe47013109252c79d7984
Author: GitHub Actions <ac...@github.com>
AuthorDate: Fri Dec 2 13:47:53 2022 +0000

    Update dist/ for commit 3a04ea08fe636b0ba58bd7c29575570d37266092
---
 dist/nanoarrow.c | 4 ++--
 dist/nanoarrow.h | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dist/nanoarrow.c b/dist/nanoarrow.c
index ce8e70f..99d4829 100644
--- a/dist/nanoarrow.c
+++ b/dist/nanoarrow.c
@@ -24,7 +24,7 @@
 
 #include "nanoarrow.h"
 
-const char* ArrowNanoarrowBuildId() { return NANOARROW_BUILD_ID; }
+const char* ArrowNanoarrowBuildId(void) { return NANOARROW_BUILD_ID; }
 
 int ArrowErrorSet(struct ArrowError* error, const char* fmt, ...) {
   if (error == NULL) {
@@ -178,7 +178,7 @@ static void ArrowBufferAllocatorMallocFree(struct ArrowBufferAllocator* allocato
 static struct ArrowBufferAllocator ArrowBufferAllocatorMalloc = {
     &ArrowBufferAllocatorMallocReallocate, &ArrowBufferAllocatorMallocFree, NULL};
 
-struct ArrowBufferAllocator ArrowBufferAllocatorDefault() {
+struct ArrowBufferAllocator ArrowBufferAllocatorDefault(void) {
   return ArrowBufferAllocatorMalloc;
 }
 
diff --git a/dist/nanoarrow.h b/dist/nanoarrow.h
index 83e66be..bafa7c4 100644
--- a/dist/nanoarrow.h
+++ b/dist/nanoarrow.h
@@ -20,7 +20,7 @@
 
 // #define NANOARROW_NAMESPACE YourNamespaceHere
 
-#define NANOARROW_BUILD_ID "gha3d9bcca1e1effe1590437e8f8d9a77fef2ac4d59"
+#define NANOARROW_BUILD_ID "gha3a04ea08fe636b0ba58bd7c29575570d37266092"
 
 #endif
 // Licensed to the Apache Software Foundation (ASF) under one
@@ -675,7 +675,7 @@ void ArrowFree(void* ptr);
 ///
 /// The default allocator uses ArrowMalloc(), ArrowRealloc(), and
 /// ArrowFree().
-struct ArrowBufferAllocator ArrowBufferAllocatorDefault();
+struct ArrowBufferAllocator ArrowBufferAllocatorDefault(void);
 
 /// \brief Create a custom deallocator
 ///
@@ -719,7 +719,7 @@ const char* ArrowErrorMessage(struct ArrowError* error);
 /// @{
 
 /// \brief Return the build id against which the library was compiled
-const char* ArrowNanoarrowBuildId();
+const char* ArrowNanoarrowBuildId(void);
 
 /// \brief Initialize a description of buffer arrangements from a storage type
 void ArrowLayoutInit(struct ArrowLayout* layout, enum ArrowType storage_type);