diff options
author | Clint Adams <clint@users.sourceforge.net> | 2000-09-17 04:28:50 +0000 |
---|---|---|
committer | Clint Adams <clint@users.sourceforge.net> | 2000-09-17 04:28:50 +0000 |
commit | abd9b6d820822389ff3d5aedd01e76e159eab226 (patch) | |
tree | 4ee143204b2ba6f55e6aee871355072996db5628 /Src | |
parent | 2742cb14ce02354f6c9a2a2a61f793f9a1932924 (diff) | |
download | zsh-abd9b6d820822389ff3d5aedd01e76e159eab226.tar.gz zsh-abd9b6d820822389ff3d5aedd01e76e159eab226.tar.xz zsh-abd9b6d820822389ff3d5aedd01e76e159eab226.zip |
12818: use tricat() in lieu of zasprintf
Diffstat (limited to 'Src')
-rw-r--r-- | Src/init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/init.c b/Src/init.c index 0c82e47ef..02749cc0a 100644 --- a/Src/init.c +++ b/Src/init.c @@ -1033,7 +1033,7 @@ sourcehome(char *s) return; } #endif - zasprintf(&buf, "%s/%s", h, s); + buf = tricat(h, "/", s); source(buf); zsfree(buf); } |