[cosmetic] formating changes (tabs) to symlink.c
This commit is contained in:
parent
9765eb7d52
commit
62c00bff40
1 changed files with 6 additions and 7 deletions
|
|
@ -71,14 +71,13 @@ static int abs_path_link(
|
|||
}
|
||||
|
||||
/* copy the component and add a \ */
|
||||
if (FAILED(StringCchCopyNA(path_pos,
|
||||
path_max-path_pos, name.name, name.len))) {
|
||||
if (FAILED(StringCchCopyNA(path_pos, path_max-path_pos, name.name,
|
||||
name.len))) {
|
||||
status = ERROR_BUFFER_OVERFLOW;
|
||||
goto out;
|
||||
}
|
||||
path_pos += name.len;
|
||||
if (FAILED(StringCchCopyNA(path_pos,
|
||||
path_max-path_pos, "\\", 1))) {
|
||||
if (FAILED(StringCchCopyNA(path_pos, path_max-path_pos, "\\", 1))) {
|
||||
status = ERROR_BUFFER_OVERFLOW;
|
||||
goto out;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue