projects
/
platform
/
core
/
system
/
swap-probe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ee33ee
)
Fix build error
17/271217/1
accepted/tizen_7.0_unified
accepted/tizen_7.0_unified_hotfix
accepted/tizen_8.0_unified
accepted/tizen_9.0_unified
accepted/tizen_unified_dev
tizen_7.0
tizen_7.0_hotfix
tizen_8.0
tizen_9.0
accepted/tizen/7.0/unified/20221110.060815
accepted/tizen/7.0/unified/hotfix/20221116.105813
accepted/tizen/8.0/unified/20231005.093855
accepted/tizen/9.0/unified/20241030.232615
accepted/tizen/unified/20220218.152653
accepted/tizen/unified/dev/20240620.005817
submit/tizen/20220217.023933
tizen_7.0_m2_release
tizen_8.0_m2_release
tizen_9.0_m2_release
author
Junseok Kim
<juns.kim@samsung.com>
Thu, 17 Feb 2022 02:52:27 +0000
(11:52 +0900)
committer
Junseok Kim
<juns.kim@samsung.com>
Thu, 17 Feb 2022 02:52:27 +0000
(11:52 +0900)
There was a build error caused by version up of wayland protocol.
This patch added NULL pointer into wl_output_listener to fix this build error.
Change-Id: I3f6900355986fdacdd1eac2df2136e2e7ff1b384
Signed-off-by: Junseok Kim <juns.kim@samsung.com>
probe_screenshot/dacapture_wayland.c
patch
|
blob
|
history
diff --git
a/probe_screenshot/dacapture_wayland.c
b/probe_screenshot/dacapture_wayland.c
index 588d1e3b15a3c15ee31ad04b51584d520ddc7cb6..787176d3aa40a6aee272037cdbaa95acb3f98f3a 100755
(executable)
--- a/
probe_screenshot/dacapture_wayland.c
+++ b/
probe_screenshot/dacapture_wayland.c
@@
-134,6
+134,8
@@
static const struct wl_output_listener output_listener = {
display_handle_geometry,
display_handle_mode,
NULL,
+ NULL,
+ NULL,
NULL
};