diff options
author | Marc-André Lureau | 2021-08-04 15:01:14 +0200 |
---|---|---|
committer | Marc-André Lureau | 2021-08-05 14:15:33 +0200 |
commit | bf7b1eab252bc56b6bbb12a8909eae738435d6ae (patch) | |
tree | 222018b52c4b0846f202cd81d3b3a8800f7fb824 /chardev | |
parent | chardev/socket: print a more correct command-line address (diff) | |
download | qemu-bf7b1eab252bc56b6bbb12a8909eae738435d6ae.tar.gz qemu-bf7b1eab252bc56b6bbb12a8909eae738435d6ae.tar.xz qemu-bf7b1eab252bc56b6bbb12a8909eae738435d6ae.zip |
chardev: mark explicitly first argument as poisoned
Since commit 9894dc0cdcc397ee5b26370bc53da6d360a363c2 "char: convert
from GIOChannel to QIOChannel", the first argument to the watch callback
can actually be a QIOChannel, which is not a GIOChannel (but a QEMU
Object).
Even though we never used that pointer, change the callback type to warn
the users. Possibly a better fix later, we may want to store the
callback and call it from intermediary functions.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Diffstat (limited to 'chardev')
-rw-r--r-- | chardev/char-fe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chardev/char-fe.c b/chardev/char-fe.c index 474715c5a9..7789f7be9c 100644 --- a/chardev/char-fe.c +++ b/chardev/char-fe.c @@ -354,7 +354,7 @@ void qemu_chr_fe_set_open(CharBackend *be, int fe_open) } guint qemu_chr_fe_add_watch(CharBackend *be, GIOCondition cond, - GIOFunc func, void *user_data) + FEWatchFunc func, void *user_data) { Chardev *s = be->chr; GSource *src; |