summaryrefslogtreecommitdiff
path: root/src/htsweb.c
diff options
context:
space:
mode:
authorXavier Roche <xroche@users.noreply.github.com>2014-05-23 21:33:43 +0000
committerXavier Roche <xroche@users.noreply.github.com>2014-05-23 21:33:43 +0000
commitcefcc0426613cc761373e785980c87c77f8a8cb5 (patch)
treee64653268bcb93fc50bf23d22e38799c5bb31adc /src/htsweb.c
parent6ba50a2001bcfa1b467f69985a002fc064d8c807 (diff)
"const correctness" cleanup
added the following default flags: -Wformat -Wformat-security -Wmultichar -Wwrite-strings fixed several other warnings
Diffstat (limited to 'src/htsweb.c')
-rw-r--r--src/htsweb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/htsweb.c b/src/htsweb.c
index d428c5d..603d8db 100644
--- a/src/htsweb.c
+++ b/src/htsweb.c
@@ -238,7 +238,7 @@ static void back_launch_cmd(void *pP) {
commandReturnCmdl = strdup(cmd);
/* split */
- argv[0] = "webhttrack";
+ argv[0] = strdup("webhttrack");
argv[1] = cmd;
argc++;
i = 0;