diff options
| author | Derek Straka <derek@asterius.io> | 2016-06-17 12:23:37 -0400 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-06-23 15:20:05 +0200 |
| commit | 80def85257e9676f6ad870f5adc2797349919f0f (patch) | |
| tree | 82e3b954f52a09dbfd627bbeda4b4d2100aee816 /meta-oe/recipes-support/canonical-multitouch/geis | |
| parent | 90488aa54d1abad7776f189940e38498778961cb (diff) | |
| download | meta-openembedded-80def85257e9676f6ad870f5adc2797349919f0f.tar.gz | |
geis: add a patch to fix incorrect indentation issues and remove -Wno-error=misleading-indentation
Signed-off-by: Derek Straka <derek@asterius.io>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/canonical-multitouch/geis')
| -rw-r--r-- | meta-oe/recipes-support/canonical-multitouch/geis/fix-indentation-for-gcc6.patch | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/canonical-multitouch/geis/fix-indentation-for-gcc6.patch b/meta-oe/recipes-support/canonical-multitouch/geis/fix-indentation-for-gcc6.patch new file mode 100644 index 0000000000..389e1b3fd7 --- /dev/null +++ b/meta-oe/recipes-support/canonical-multitouch/geis/fix-indentation-for-gcc6.patch | |||
| @@ -0,0 +1,14 @@ | |||
| 1 | --- geis-2.2.17/libgeis/geis_subscription.c.orig 2016-06-17 12:04:21.062938443 -0400 | ||
| 2 | +++ geis-2.2.17/libgeis/geis_subscription.c 2016-06-17 12:05:02.934939172 -0400 | ||
| 3 | @@ -237,9 +237,10 @@ | ||
| 4 | GeisSize i; | ||
| 5 | for (i = 0; i < bag->sub_store_size; ++i) | ||
| 6 | { | ||
| 7 | - if (bag->sub_store[i]) | ||
| 8 | + if (bag->sub_store[i]) { | ||
| 9 | _subscription_unref(bag->sub_store[i]); | ||
| 10 | bag->sub_store[i] = NULL; | ||
| 11 | + } | ||
| 12 | } | ||
| 13 | } | ||
| 14 | |||
