summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarc-André Lureau <marcandre.lureau@gmail.com>2015-11-18 14:22:26 +0100
committerFrediano Ziglio <fziglio@redhat.com>2015-11-18 13:53:22 +0000
commitc66c9e6669b4f8b2f97f01df7130ff99cc2213ab (patch)
tree7bae9783ed2d246ba2d5730a73c66101ea9893d8
parent3fc8d6ab9a81a4080e8e4413243956f37ccb0b4d (diff)
downloadspice-c66c9e6669b4f8b2f97f01df7130ff99cc2213ab.tar.gz
spice-c66c9e6669b4f8b2f97f01df7130ff99cc2213ab.tar.xz
spice-c66c9e6669b4f8b2f97f01df7130ff99cc2213ab.zip
display-channel: Keep macro definition in one line
Acked-by: Frediano Ziglio <fziglio@redhat.com>
-rw-r--r--server/display-channel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/display-channel.h b/server/display-channel.h
index 29df3132..cd264780 100644
--- a/server/display-channel.h
+++ b/server/display-channel.h
@@ -211,8 +211,8 @@ struct DisplayChannelClient {
#define DCC_TO_WORKER(dcc) \
(SPICE_CONTAINEROF((dcc)->common.base.channel, CommonChannel, base)->worker)
-#define DCC_TO_DC(dcc) SPICE_CONTAINEROF((dcc)->common.base.channel, \
- DisplayChannel, common.base)
+#define DCC_TO_DC(dcc) \
+ SPICE_CONTAINEROF((dcc)->common.base.channel, DisplayChannel, common.base)
#define RCC_TO_DCC(rcc) SPICE_CONTAINEROF((rcc), DisplayChannelClient, common.base)