From mboxrd@z Thu Jan 1 00:00:00 1970 From: christian.babeux@efficios.com (Christian Babeux) Date: Tue, 23 Oct 2012 15:37:20 -0400 Subject: [lttng-dev] [PATCH lttng-ust] Fix: Fix self-assign warning on struct ustfork_clone_info init Message-ID: <1351021040-18587-1-git-send-email-christian.babeux@efficios.com> Use the proper field designator syntax (C99) to initialize the ustfork_clone_info struct. Signed-off-by: Christian Babeux --- liblttng-ust-fork/ustfork.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) mode change 100644 => 100755 liblttng-ust-fork/ustfork.c diff --git a/liblttng-ust-fork/ustfork.c b/liblttng-ust-fork/ustfork.c old mode 100644 new mode 100755 index 13f77cf..34f674c --- a/liblttng-ust-fork/ustfork.c +++ b/liblttng-ust-fork/ustfork.c @@ -139,7 +139,7 @@ int clone(int (*fn)(void *), void *child_stack, int flags, void *arg, ...) tls, ctid); } else { /* Creating a real process, we need to intervene. */ - struct ustfork_clone_info info = { fn = fn, arg = arg }; + struct ustfork_clone_info info = { .fn = fn, .arg = arg }; ust_before_fork(&info.sigset); retval = plibc_func(clone_fn, child_stack, flags, &info, -- 1.7.12.2