diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2011-09-23 08:47:53 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2011-09-28 09:06:57 -0400 |
commit | 4a6a5421113ab662a665c62ed6a24b61a5a36950 (patch) | |
tree | 037524123a5e1685d5e2942d1d5983896146a06a /src/krb5_plugin | |
parent | db2c71bd61b7e1610ea1a178ef05059ef952685a (diff) | |
download | sssd-4a6a5421113ab662a665c62ed6a24b61a5a36950.tar.gz sssd-4a6a5421113ab662a665c62ed6a24b61a5a36950.tar.xz sssd-4a6a5421113ab662a665c62ed6a24b61a5a36950.zip |
Multiline macro cleanup
This is mostly a cosmetic patch.
The purpose of wrapping a multi-line macro in a do { } while(0) is to
make the macro usable as a regular statement, not a compound statement.
When the while(0) is terminated with a semicolon, the do { } while(0);
block becomes a compound statement again.
Diffstat (limited to 'src/krb5_plugin')
-rw-r--r-- | src/krb5_plugin/sssd_krb5_locator_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/krb5_plugin/sssd_krb5_locator_plugin.c b/src/krb5_plugin/sssd_krb5_locator_plugin.c index d6e90a747..3eced04d6 100644 --- a/src/krb5_plugin/sssd_krb5_locator_plugin.c +++ b/src/krb5_plugin/sssd_krb5_locator_plugin.c @@ -49,7 +49,7 @@ if (ctx->debug) { \ debug_fn body; \ } \ -} while(0); +} while(0) struct sssd_ctx { char *sssd_realm; |