diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-18 14:05:08 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2014-05-18 14:05:08 +0000 |
commit | 9f23ea79805f561f2f9fbd2e46cfd5c9914076e8 (patch) | |
tree | 6f24913c76eccdf35508c1c1beeeb2d7516d6d16 /src | |
parent | fe1ec5b0f6e105ac3654ed7aa95152e66a3f4f3a (diff) |
Fixed __builtin___strncat_chk warning
Diffstat (limited to 'src')
-rw-r--r-- | src/htsalias.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/htsalias.c b/src/htsalias.c index 0f8a41e..19b7857 100644 --- a/src/htsalias.c +++ b/src/htsalias.c @@ -517,9 +517,9 @@ int optinclude_file(const char *name, int *argc, char **argv, char *x_argvblk, tmp_argv[1] = _tmp_argv[1]; tmp_argv[2] = _tmp_argv[2]; tmp_argv[3] = _tmp_argv[3]; - strcpybuff(tmp_argv[0], "--"); - strcatbuff(tmp_argv[0], a); - strcpybuff(tmp_argv[1], b); + strcpybuff(_tmp_argv[0], "--"); + strcatbuff(_tmp_argv[0], a); + strcpybuff(_tmp_argv[1], b); result = optalias_check(2, (const char *const *) tmp_argv, 0, &return_argc, |