diff options
| author | Mikael Magnusson <mikachu@comhem.se> | 2008-01-16 15:25:08 +0100 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@comhem.se> | 2008-01-16 15:35:25 +0100 |
| commit | 0be98fee4743c795b06aa23881b82eff5bab3ef6 (patch) | |
| tree | b108607acae5fc6298a1a6ed2e1c9354213557e0 /render | |
| parent | cafba3acf3ef5b34be867a155ec05b35e82384e9 (diff) | |
Various fixes for sparse warnings.
Define void functions with (void), not ().
Add missing includes.
Some functions were declared static but defined non-static.
Some variables that should be file static were file global but not used in any other file.
prop.h defined a new prop_atoms in each file that included it instead of declaring it extern.
Diffstat (limited to 'render')
| -rw-r--r-- | render/instance.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/render/instance.c b/render/instance.c index 91f9db77..b867815c 100644 --- a/render/instance.c +++ b/render/instance.c @@ -91,7 +91,7 @@ RrInstance* RrInstanceNew (Display *display, gint screen) return definst; } -void RrTrueColorSetup (RrInstance *inst) +static void RrTrueColorSetup (RrInstance *inst) { gulong red_mask, green_mask, blue_mask; XImage *timage = NULL; @@ -121,7 +121,7 @@ void RrTrueColorSetup (RrInstance *inst) #define RrPseudoNcolors(inst) (1 << (inst->pseudo_bpc * 3)) -void RrPseudoColorSetup (RrInstance *inst) +static void RrPseudoColorSetup (RrInstance *inst) { XColor icolors[256]; gint tr, tg, tb, n, r, g, b, i, incolors, ii; |
