mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-14 20:22:21 +00:00
dtstyle: Resolve uninitialized warnings
This commit is contained in:
parent
f073bc2e24
commit
4eb099b047
2 changed files with 2 additions and 2 deletions
|
@ -1338,7 +1338,7 @@ HSVtoRGB(
|
|||
{
|
||||
double p1, p2, p3;
|
||||
double hue, sat, val;
|
||||
double red, green, blue;
|
||||
double red = 0.0, green = 0.0, blue = 0.0;
|
||||
double i, f;
|
||||
|
||||
hue = (double)h / 60.0;
|
||||
|
|
|
@ -2095,7 +2095,7 @@ void
|
|||
SaveOrgPalette( void )
|
||||
{
|
||||
int i;
|
||||
palette *tmp_palette, *tmp2_palette;
|
||||
palette *tmp_palette = NULL, *tmp2_palette = NULL;
|
||||
|
||||
if(save.restoreFlag && defaultName_restore[0] != 0) {
|
||||
tmp_palette = pHeadPalette;
|
||||
|
|
Loading…
Reference in a new issue