[Spice-commits] 3 commits - AUTHORS server/dummy-channel.c server/glib-compat.h

Frediano Ziglio fziglio at kemper.freedesktop.org
Tue Nov 1 12:43:37 UTC 2016


 AUTHORS                |    4 ++++
 server/dummy-channel.c |   17 ++++++++++++++++-
 server/glib-compat.h   |   18 +++++++++---------
 3 files changed, 29 insertions(+), 10 deletions(-)

New commits:
commit b7c7a6ca9db62205d4367a69e7f57c436d6fbd4c
Author: Christophe Fergeau <cfergeau at redhat.com>
Date:   Thu Oct 27 16:12:11 2016 +0200

    syntax-check: Add missing contributors names to AUTHORS
    
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/AUTHORS b/AUTHORS
index e1a1a87..2b0fe24 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -35,6 +35,7 @@ Patches also contributed by
     David Gibson <david at gibson.dropbear.id.au>
     David Jaša <djasa at redhat.com>
     Dunrong Huang <riegamaths at gmail.com>
+    Eduardo Lima (Etrunko) <etrunko at redhat.com>
     Erlon Cruz <erlon.cruz at br.flextronics.com>
     Fabiano Fidêncio <fabiano at fidencio.org>
     Francois Gouget <fgouget at codeweavers.com>
@@ -43,8 +44,10 @@ Patches also contributed by
     Javier Celaya <javier.celaya at flexvm.es>
     Jeremy White <jwhite at codeweavers.com>
     Jürg Billeter <j at bitron.ch>
+    Li Zhijian <lizhijian at cn.fujitsu.com>
     Liang Guo <bluestonechina at gmail.com>
     Lukas Venhoda <lvenhoda at redhat.com>
+    Michal Privoznik <mprivozn at redhat.com>
     Michael Tokarev <mjt at tls.msk.ru>
     Nahum Shalman <nshalman at elys.com>
     Nikolay Orlyuk <virkony at gmail.com>
@@ -52,6 +55,7 @@ Patches also contributed by
     Peter Robinson <pbrobinson at gmail.com>
     Sandy Stutsman <sstutsma at redhat.com>
     Snir Sheriber <ssheribe at redhat.com>
+    Sunny Shin <sunny4s.git at gmail.com>
     Søren Sandmann Pedersen <ssp at redhat.com>
     Thomas Tyminski <thomast at cs.tu-berlin.de>
     Tiziano Mueller <dev-zero at gentoo.org>
commit 05b7afb3fb9d88cd0baa3c3109cd43dac781cf18
Author: Christophe Fergeau <cfergeau at redhat.com>
Date:   Thu Oct 27 16:12:10 2016 +0200

    syntax-check: Change tabs to spaces
    
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/server/glib-compat.h b/server/glib-compat.h
index a20a434..8a27afe 100644
--- a/server/glib-compat.h
+++ b/server/glib-compat.h
@@ -24,9 +24,9 @@
 static inline void
 g_queue_free_full(GQueue *queue, GDestroyNotify free_func)
 {
-	/* quite hack cast but work with standard C call convention */
-	g_queue_foreach(queue, (GFunc) free_func, NULL);
-	g_queue_clear(queue);
+    /* quite hack cast but work with standard C call convention */
+    g_queue_foreach(queue, (GFunc) free_func, NULL);
+    g_queue_clear(queue);
 }
 #endif
 
@@ -34,12 +34,12 @@ g_queue_free_full(GQueue *queue, GDestroyNotify free_func)
 static inline gboolean
 g_queue_remove_boolean(GQueue *queue, gconstpointer data)
 {
-	GList *link = g_queue_find(queue, data);
-	if (!link) {
-		return FALSE;
-	}
-	g_queue_unlink(queue, link);
-	return TRUE;
+    GList *link = g_queue_find(queue, data);
+    if (!link) {
+        return FALSE;
+    }
+    g_queue_unlink(queue, link);
+    return TRUE;
 }
 #define g_queue_remove g_queue_remove_boolean
 #endif
commit e91c1844f1e83d94193530d1562740e3205a73d2
Author: Christophe Fergeau <cfergeau at redhat.com>
Date:   Thu Oct 27 16:12:09 2016 +0200

    syntax-check: Add missing license
    
    Acked-by: Frediano Ziglio <fziglio at redhat.com>

diff --git a/server/dummy-channel.c b/server/dummy-channel.c
index b1ef5b0..f13c8f8 100644
--- a/server/dummy-channel.c
+++ b/server/dummy-channel.c
@@ -1,4 +1,19 @@
-/* dummy-channel.c */
+/*
+   Copyright (C) 2016 Red Hat, Inc.
+
+   This library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Lesser General Public
+   License as published by the Free Software Foundation; either
+   version 2.1 of the License, or (at your option) any later version.
+
+   This library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Lesser General Public License for more details.
+
+   You should have received a copy of the GNU Lesser General Public
+   License along with this library; if not, see <http://www.gnu.org/licenses/>.
+*/
 #ifdef HAVE_CONFIG_H
 #include <config.h>
 #endif


More information about the Spice-commits mailing list