summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Grenville <pyxlcy@gmail.com>2013-04-26 16:14:37 +0800
committerRichard Grenville <pyxlcy@gmail.com>2013-04-26 16:14:37 +0800
commit74d91eb38534746efa0b21f2244ba6b41e5440ba (patch)
tree33d14122d8d3338c9a663a80cab3010b9c19369b
parentb5116f646543d1bcc72f3fd1e9c54be10d9ea8a7 (diff)
downloadtdebase-74d91eb38534746efa0b21f2244ba6b41e5440ba.tar.gz
tdebase-74d91eb38534746efa0b21f2244ba6b41e5440ba.zip
Misc: Fix gcc error
Fix gcc compilation error about "initializer element is not constant".
-rw-r--r--compton.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/compton.c b/compton.c
index 05e115c83..7935e4c16 100644
--- a/compton.c
+++ b/compton.c
@@ -5155,15 +5155,13 @@ get_cfg(session_t *ps, int argc, char *const *argv, bool first_pass) {
// Fill default blur kernel
if (ps->o.blur_background && !ps->o.blur_kern) {
- const static int convolution_blur_size = 3;
// Convolution filter parameter (box blur)
// gaussian or binomial filters are definitely superior, yet looks
// like they aren't supported as of xorg-server-1.13.0
const static XFixed convolution_blur[] = {
// Must convert to XFixed with XDoubleToFixed()
// Matrix size
- XDoubleToFixed(convolution_blur_size),
- XDoubleToFixed(convolution_blur_size),
+ XDoubleToFixed(3), XDoubleToFixed(3),
// Matrix
XDoubleToFixed(1), XDoubleToFixed(1), XDoubleToFixed(1),
XDoubleToFixed(1), XDoubleToFixed(1), XDoubleToFixed(1),