gnash-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-


From: Bastiaan Jacques
Subject: [Gnash-commit] [SCM] Gnash branch, master, updated. release_0_8_9_final-1719-g7079cac
Date: Fri, 09 Aug 2013 19:27:13 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnash".

The branch, master has been updated
       via  7079cac379e11c20f40600e383a9f91a8abb2d5f (commit)
      from  a9961b2a24bbdc1b6fb8d1e043d8fa6285f892a3 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit//commit/?id=7079cac379e11c20f40600e383a9f91a8abb2d5f


commit 7079cac379e11c20f40600e383a9f91a8abb2d5f
Author: Bastiaan Jacques <address@hidden>
Date:   Fri Aug 9 21:27:01 2013 +0200

    Fix warnings.

diff --git a/libbase/jemalloc_gnash.c b/libbase/jemalloc_gnash.c
index d2ef11d..a702688 100644
--- a/libbase/jemalloc_gnash.c
+++ b/libbase/jemalloc_gnash.c
@@ -17,6 +17,7 @@
  *
  */ 
 
+#include <stddef.h>
 #include <jemalloc.h>
 
 #ifdef HAVE_CONFIG_H
@@ -45,10 +46,12 @@ struct mallinfo {
     int keepcost; /* top-most, releasable space UNUSED */
 };
 
+struct mallinfo mallinfo (void);
+
 struct mallinfo
 mallinfo(void)
 {
-    struct mallinfo mi = {};
+    struct mallinfo mi = {0,};
 
     size_t len = sizeof(mi.arena);
     mallctl("stats.mapped", &mi.arena, &len, NULL, 0);

-----------------------------------------------------------------------

Summary of changes:
 libbase/jemalloc_gnash.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Gnash



reply via email to

[Prev in Thread] Current Thread [Next in Thread]