Re: [PATCH] ui: remove useless typecasts

2022-10-24 Thread Laurent Vivier
Le 22/10/2022 à 16:12, Volker Rümelin a écrit : Commit 8f9abdf586 ("chardev: src buffer const for write functions") changed the type of the second parameter of qemu_chr_be_write() from uint8_t * to const uint8_t *. Remove the now useless type casts from qemu_chr_be_write() function calls in ui/co

Re: [PATCH] ui: remove useless typecasts

2022-10-24 Thread Claudio Fontana
On 10/22/22 16:12, Volker Rümelin wrote: > Commit 8f9abdf586 ("chardev: src buffer const for write functions") > changed the type of the second parameter of qemu_chr_be_write() > from uint8_t * to const uint8_t *. Remove the now useless type > casts from qemu_chr_be_write() function calls in ui/con

Re: [PATCH] ui: remove useless typecasts

2022-10-23 Thread Philippe Mathieu-Daudé
On 22/10/22 16:12, Volker Rümelin wrote: Commit 8f9abdf586 ("chardev: src buffer const for write functions") changed the type of the second parameter of qemu_chr_be_write() from uint8_t * to const uint8_t *. Remove the now useless type casts from qemu_chr_be_write() function calls in ui/console.c

Re: [PATCH] ui: remove useless typecasts

2022-10-23 Thread Markus Armbruster
Volker Rümelin writes: > Commit 8f9abdf586 ("chardev: src buffer const for write functions") > changed the type of the second parameter of qemu_chr_be_write() > from uint8_t * to const uint8_t *. Remove the now useless type > casts from qemu_chr_be_write() function calls in ui/console.c and > ui/

[PATCH] ui: remove useless typecasts

2022-10-23 Thread Volker Rümelin
Commit 8f9abdf586 ("chardev: src buffer const for write functions") changed the type of the second parameter of qemu_chr_be_write() from uint8_t * to const uint8_t *. Remove the now useless type casts from qemu_chr_be_write() function calls in ui/console.c and ui/gtk.c. Cc: qemu-triv...@nongnu.org