<pre style='margin:0'>
Mihai Moldovan (Ionic) pushed a commit to branch master
in repository macports-base.

</pre>
<p><a href="https://github.com/macports/macports-base/commit/12bb12c436c08d60016aa4758b170791211aa9e8">https://github.com/macports/macports-base/commit/12bb12c436c08d60016aa4758b170791211aa9e8</a></p>
<pre style="white-space: pre; background: #F8F8F8">The following commit(s) were added to refs/heads/master by this push:
<span style='display:block; white-space:pre;color:#404040;'>     new 12bb12c  Fix prototype for new_mount_cs_cache
</span>12bb12c is described below

<span style='display:block; white-space:pre;color:#808000;'>commit 12bb12c436c08d60016aa4758b170791211aa9e8
</span>Author: Eitan Adler <lists@eitanadler.com>
AuthorDate: Sat Nov 4 23:31:34 2017 -0700

<span style='display:block; white-space:pre;color:#404040;'>    Fix prototype for new_mount_cs_cache
</span><span style='display:block; white-space:pre;color:#404040;'>    
</span><span style='display:block; white-space:pre;color:#404040;'>    A function written like `void foo()` is actually a C89 style
</span><span style='display:block; white-space:pre;color:#404040;'>    non-protoype declaration. Change this to ensure that the function is
</span><span style='display:block; white-space:pre;color:#404040;'>    only called with zero arguments.
</span>---
 src/pextlib1.0/Pextlib.c | 2 +-
 src/pextlib1.0/Pextlib.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/pextlib1.0/Pextlib.c b/src/pextlib1.0/Pextlib.c
</span><span style='display:block; white-space:pre;color:#808080;'>index 328076b..e855b8a 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/pextlib1.0/Pextlib.c
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/pextlib1.0/Pextlib.c
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -665,7 +665,7 @@ struct _mount_cs_cache {
</span> /**
  * Returns a new pre-allocated mount_cs_cache_t object.
  */
<span style='display:block; white-space:pre;background:#ffe0e0;'>-mount_cs_cache_t* new_mount_cs_cache() {
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+mount_cs_cache_t* new_mount_cs_cache(void) {
</span>     mount_cs_cache_t *ret = malloc(sizeof(mount_cs_cache_t));
 
     if (ret) {
<span style='display:block; white-space:pre;color:#808080;'>diff --git a/src/pextlib1.0/Pextlib.h b/src/pextlib1.0/Pextlib.h
</span><span style='display:block; white-space:pre;color:#808080;'>index 2b6b1d2..c57e77c 100644
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>--- a/src/pextlib1.0/Pextlib.h
</span><span style='display:block; white-space:pre;background:#e0e0ff;'>+++ b/src/pextlib1.0/Pextlib.h
</span><span style='display:block; white-space:pre;background:#e0e0e0;'>@@ -38,7 +38,7 @@ void ui_debug(Tcl_Interp *interp, const char *format, ...) __attribute__((format
</span> 
 /* Mount point file system case-sensitivity caching infrastructure. */
 typedef struct _mount_cs_cache mount_cs_cache_t;
<span style='display:block; white-space:pre;background:#ffe0e0;'>-mount_cs_cache_t* new_mount_cs_cache();
</span><span style='display:block; white-space:pre;background:#e0ffe0;'>+mount_cs_cache_t* new_mount_cs_cache(void);
</span> void reset_mount_cs_cache(mount_cs_cache_t *cache);
 
 #ifdef __APPLE__
</pre><pre style='margin:0'>

</pre>