summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/libs6/ftrigr_startf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs6/ftrigr_startf.c b/src/libs6/ftrigr_startf.c
index 28c81aa..ee89634 100644
--- a/src/libs6/ftrigr_startf.c
+++ b/src/libs6/ftrigr_startf.c
@@ -6,7 +6,7 @@
int ftrigr_startf (ftrigr_ref a, tain_t const *deadline, tain_t *stamp)
{
- char const *cargv[2] = { FTRIGRD_PROG, 0 } ;
- char const *cenvp[1] = { 0 } ;
+ static char const *const cargv[2] = { FTRIGRD_PROG, 0 } ;
+ static char const *const cenvp[1] = { 0 } ;
return skaclient_startf_b(&a->connection, &a->buffers, cargv[0], cargv, cenvp, SKACLIENT_OPTION_WAITPID, FTRIGR_BANNER1, FTRIGR_BANNER1_LEN, FTRIGR_BANNER2, FTRIGR_BANNER2_LEN, deadline, stamp) ;
}