diff options
author | Matt Caswell <matt@openssl.org> | 2015-01-21 12:09:58 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2015-01-22 10:20:08 +0100 |
commit | dbd87ffc210328eb8670c24a427318172c1e334d (patch) | |
tree | 6175be66604e4bc349d37a6832e4547b9079410c /ms | |
parent | modes/gcm128.c: make it indent-friendly. (diff) | |
download | openssl-dbd87ffc210328eb8670c24a427318172c1e334d.tar.xz openssl-dbd87ffc210328eb8670c24a427318172c1e334d.zip |
indent has problems with comments that are on the right hand side of a line.
Sometimes it fails to format them very well, and sometimes it corrupts them!
This commit moves some particularly problematic ones.
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'ms')
-rw-r--r-- | ms/applink.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ms/applink.c b/ms/applink.c index 54a0a64262..76f1c40d0a 100644 --- a/ms/applink.c +++ b/ms/applink.c @@ -46,9 +46,12 @@ extern "C" { __declspec(dllexport) void ** #if defined(__BORLANDC__) -__stdcall /* __stdcall appears to be the only way to get the name - * decoration right with Borland C. Otherwise it works - * purely incidentally, as we pass no parameters. */ +/* + * __stdcall appears to be the only way to get the name + * decoration right with Borland C. Otherwise it works + * purely incidentally, as we pass no parameters. + */ +__stdcall #else __cdecl #endif |