gnunet-svn
[Top][All Lists]
Advanced

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

[gnunet] branch master updated: -fix warning


From: gnunet
Subject: [gnunet] branch master updated: -fix warning
Date: Fri, 10 Nov 2023 19:37:16 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository gnunet.

The following commit(s) were added to refs/heads/master by this push:
     new 85c4f6c7b -fix warning
85c4f6c7b is described below

commit 85c4f6c7bbd405fd101d8e58223e0f4660b1ca37
Author: Christian Grothoff <grothoff@gnunet.org>
AuthorDate: Fri Nov 10 19:37:08 2023 +0100

    -fix warning
---
 src/service/testing/testing_api_cmd_exec_bash_script.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/service/testing/testing_api_cmd_exec_bash_script.c 
b/src/service/testing/testing_api_cmd_exec_bash_script.c
index 7e7aafb69..171a2baac 100644
--- a/src/service/testing/testing_api_cmd_exec_bash_script.c
+++ b/src/service/testing/testing_api_cmd_exec_bash_script.c
@@ -59,7 +59,7 @@ struct BashScriptState
   /**
    * Arguments for the script
    */
-  char **script_argv;
+  char *const*script_argv;
 
   /**
    * Size of script_argv.
@@ -196,8 +196,8 @@ const struct GNUNET_TESTING_Command
 GNUNET_TESTING_cmd_exec_bash_script (const char *label,
                                      const char *script,
                                      char *const script_argv[],
-                                    int argc,
-                                    GNUNET_ChildCompletedCallback cb)
+                                     int argc,
+                                     GNUNET_ChildCompletedCallback cb)
 {
   struct BashScriptState *bss;
 
@@ -208,7 +208,7 @@ GNUNET_TESTING_cmd_exec_bash_script (const char *label,
   bss->cb = cb;
 
   return GNUNET_TESTING_command_new (bss,
-                                    label,
+                                     label,
                                      &exec_bash_script_run,
                                      &exec_bash_script_cleanup,
                                      NULL,

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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