little style fixes, part 2
This commit is contained in:
parent
6e5e2fe5ee
commit
d60a741f78
|
@ -54,9 +54,9 @@ char *resolve_tilde(const char *path) {
|
||||||
/* no match, or many wildcard matches are bad */
|
/* no match, or many wildcard matches are bad */
|
||||||
if (res == GLOB_NOMATCH || globbuf.gl_pathc != 1)
|
if (res == GLOB_NOMATCH || globbuf.gl_pathc != 1)
|
||||||
result = sstrdup(path);
|
result = sstrdup(path);
|
||||||
else if (res != 0)
|
else if (res != 0) {
|
||||||
die("glob() failed");
|
die("glob() failed");
|
||||||
else {
|
} else {
|
||||||
head = globbuf.gl_pathv[0];
|
head = globbuf.gl_pathv[0];
|
||||||
result = scalloc(strlen(head) + (tail ? strlen(tail) : 0) + 1);
|
result = scalloc(strlen(head) + (tail ? strlen(tail) : 0) + 1);
|
||||||
strncpy(result, head, strlen(head));
|
strncpy(result, head, strlen(head));
|
||||||
|
|
Loading…
Reference in New Issue