mirror of
https://github.com/owntone/owntone-server.git
synced 2025-03-03 07:10:08 -05:00
type fixes
This commit is contained in:
parent
8e9d759e05
commit
942125f271
@ -137,7 +137,7 @@ void txt_add(char *txtrecord, char *fmt, ...) {
|
|||||||
vsnprintf(buff, sizeof(buff), fmt, ap);
|
vsnprintf(buff, sizeof(buff), fmt, ap);
|
||||||
va_end(ap);
|
va_end(ap);
|
||||||
|
|
||||||
len = strlen(buff);
|
len = (int)strlen(buff);
|
||||||
end = txtrecord + strlen(txtrecord);
|
end = txtrecord + strlen(txtrecord);
|
||||||
*end = len;
|
*end = len;
|
||||||
strcpy(end+1,buff);
|
strcpy(end+1,buff);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user