aboutsummaryrefslogtreecommitdiffstats
path: root/ws_attributes.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-10-26 11:38:49 -0700
committerGuy Harris <guy@alum.mit.edu>2017-10-26 18:39:22 +0000
commit6d092c134477ae1bd081a0ce8d79d964eb5f28eb (patch)
tree27a41ea5e91e25688c3d81390e6cf86a7d2fe330 /ws_attributes.h
parent985a8f297b5107bdd29df561fce1cfce5c541863 (diff)
Whitespace cleanups.
Change-Id: Ic19c143fc9143da230f286f1fe4aecc0fe8b08be Reviewed-on: https://code.wireshark.org/review/24085 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'ws_attributes.h')
-rw-r--r--ws_attributes.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ws_attributes.h b/ws_attributes.h
index 569fed44d5..fdac6a0d04 100644
--- a/ws_attributes.h
+++ b/ws_attributes.h
@@ -97,13 +97,13 @@ extern "C" {
*/
#if !defined(__SUNPRO_C)
- #define WS_IS_AT_LEAST_SUNC_VERSION(major,minor) 0
+ #define WS_IS_AT_LEAST_SUNC_VERSION(major, minor) 0
#else
#define WS_SUNPRO_VERSION_TO_BCD(major, minor) \
(((minor) >= 10) ? \
(((major) << 12) | (((minor)/10) << 8) | (((minor)%10) << 4)) : \
(((major) << 8) | ((minor) << 4)))
- #define WS_IS_AT_LEAST_SUNC_VERSION(major,minor) \
+ #define WS_IS_AT_LEAST_SUNC_VERSION(major, minor) \
(__SUNPRO_C >= WS_SUNPRO_VERSION_TO_BCD((major), (minor)))
#endif
@@ -115,7 +115,7 @@ extern "C" {
*/
#if !defined(__xlC__)
- #define WS_IS_AT_LEAST_XL_C_VERSION(major,minor) 0
+ #define WS_IS_AT_LEAST_XL_C_VERSION(major, minor) 0
#else
#define WS_IS_AT_LEAST_XL_C_VERSION(major, minor) \
(__xlC__ >= (((major) << 8) | (minor)))
@@ -133,9 +133,9 @@ extern "C" {
*/
#if !defined(__HP_aCC)
- #define WS_IS_AT_LEAST_HP_C_VERSION(major,minor) 0
+ #define WS_IS_AT_LEAST_HP_C_VERSION(major, minor) 0
#else
- #define WS_IS_AT_LEAST_HP_C_VERSION(major,minor) \
+ #define WS_IS_AT_LEAST_HP_C_VERSION(major, minor) \
(__HP_aCC >= ((major)*10000 + (minor)*100))
#endif