Skip to content

Commit

Permalink
code formattting
Browse files Browse the repository at this point in the history
  • Loading branch information
aG0aep6G committed Apr 26, 2016
1 parent dce9175 commit 831ddcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion std/file.d
Original file line number Diff line number Diff line change
Expand Up @@ -2332,7 +2332,7 @@ else version(Posix) void symlink(RO, RL)(RO original, RL link)
auto oz = original.tempCString();
auto lz = link.tempCString();
alias posixSymlink = core.sys.posix.unistd.symlink;
immutable int result = () @trusted {return posixSymlink(oz, lz);} ();
immutable int result = () @trusted { return posixSymlink(oz, lz); } ();
cenforce(result == 0, text(link));
}
}
Expand Down

0 comments on commit 831ddcc

Please sign in to comment.