Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guido Gunther
virtboard
Commits
adbf1b8f
Commit
adbf1b8f
authored
Oct 10, 2018
by
Guido Gunther
Browse files
Use bool type instead of int
Otherwise we crash like
Librem5/virtboard!18 (comment 7906)
parent
64d31b0b
Pipeline
#1443
passed with stage
in 1 minute and 7 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
clients/keyboard.c
View file @
adbf1b8f
...
...
@@ -1199,7 +1199,7 @@ static int
set_visible
(
sd_bus_message
*
m
,
void
*
userdata
,
sd_bus_error
*
ret_error
)
{
struct
virtual_keyboard
*
keyboard
=
userdata
;
bool
value
;
int
value
;
int
ret
=
sd_bus_message_read
(
m
,
"b"
,
&
value
);
if
(
ret
<
0
)
{
fprintf
(
stderr
,
"Failed to read dbus argument
\n
"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment