mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
build: fix few warnings
This commit is contained in:
parent
49ae38347c
commit
09641cc707
3 changed files with 3 additions and 2 deletions
|
|
@ -359,7 +359,7 @@ pa_proplist *pa_proplist_from_string(const char *str) {
|
|||
}
|
||||
|
||||
blob = pa_xmalloc((size_t)(e-v)/2);
|
||||
if (pa_parsehex(v, blob, (e-v)/2) != ((e-v)/2)) {
|
||||
if (pa_parsehex(v, blob, (e-v)/2) != (size_t)((e-v)/2)) {
|
||||
pa_log("Invalid \"hex:\" value data");
|
||||
pa_xfree(blob);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue