summaryrefslogtreecommitdiff
path: root/wsutil
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-06-09 19:59:39 -0700
committerGuy Harris <guy@alum.mit.edu>2017-06-10 03:00:08 +0000
commitb01c85c17a0a1e78837aeab79b15054ab15c8483 (patch)
tree8ce8f574e2ae8fb157c6bbec5ed6afb184d972d1 /wsutil
parent0480a0be81dd5c561637c8d6351191c154f72970 (diff)
downloadwireshark-b01c85c17a0a1e78837aeab79b15054ab15c8483.tar.gz
Fix indentation.
Change-Id: I9ea3947a4100d4d566c0d6815de5336214f9f581 Reviewed-on: https://code.wireshark.org/review/22062 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'wsutil')
-rw-r--r--wsutil/color.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/wsutil/color.h b/wsutil/color.h
index 7199bba396..e4f9727b0c 100644
--- a/wsutil/color.h
+++ b/wsutil/color.h
@@ -30,16 +30,16 @@ extern "C" {
* Data structure holding RGB value for a color.
*/
typedef struct {
- guint16 red;
- guint16 green;
- guint16 blue;
+ guint16 red;
+ guint16 green;
+ guint16 blue;
} color_t;
inline static unsigned int
color_t_to_rgb(const color_t *color) {
return (((color->red >> 8) << 16)
- | ((color->green >> 8) << 8)
- | (color->blue >> 8));
+ | ((color->green >> 8) << 8)
+ | (color->blue >> 8));
}
#ifdef __cplusplus