diff options
author | Conor Curran <conor.curran@canonical.com> | 2011-01-11 03:57:41 -0600 |
---|---|---|
committer | Conor Curran <conor.curran@canonical.com> | 2011-01-11 03:57:41 -0600 |
commit | 590a3ad4a7bf384a7023365c85e127a42cd4b5b2 (patch) | |
tree | a77a7469dcabf847ed8a6e2d68b880978270d4f0 /src/transport-widget.c | |
parent | 9452f0262c608fc1ee6509078b3538f68b5f0993 (diff) | |
download | ayatana-indicator-sound-590a3ad4a7bf384a7023365c85e127a42cd4b5b2.tar.gz ayatana-indicator-sound-590a3ad4a7bf384a7023365c85e127a42cd4b5b2.tar.bz2 ayatana-indicator-sound-590a3ad4a7bf384a7023365c85e127a42cd4b5b2.zip |
more warnings sorted
Diffstat (limited to 'src/transport-widget.c')
-rw-r--r-- | src/transport-widget.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/transport-widget.c b/src/transport-widget.c index 9b45734..a276a31 100644 --- a/src/transport-widget.c +++ b/src/transport-widget.c @@ -757,7 +757,9 @@ _color_rgb_to_hls (gdouble *r, gdouble red; gdouble green; gdouble blue; - gdouble h, l, s; + gdouble h = 0; + gdouble l; + gdouble s; gdouble delta; red = *r; |