[PATCH] Fixed compilation error on openSUSE distibution



Removed reference operator which caused incompatible pointer type
compilation error on openSUSE.
---
 src/named-manager/nm-named-manager.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/named-manager/nm-named-manager.c
b/src/named-manager/nm-named-manager.c
index a360958..cab06ab 100644
--- a/src/named-manager/nm-named-manager.c
+++ b/src/named-manager/nm-named-manager.c
@@ -149,7 +149,7 @@ run_netconfig (GError **error, gint *stdin_fd)
        g_free (tmp);

        if (!g_spawn_async_with_pipes (NULL, argv, NULL, 0,
netconfig_child_setup,
-                                      NULL, &pid, &stdin_fd, NULL,
NULL, error))
+                                      NULL, &pid, stdin_fd, NULL, NULL,
error))
                return -1;

        return pid;
--
1.6.0.2


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