mirror of
https://github.com/owntone/owntone-server.git
synced 2025-07-16 12:21:59 -04:00
pedantic typecasting
This commit is contained in:
parent
335b21533b
commit
9ac1213126
@ -1199,7 +1199,7 @@ int db_exists(int id) {
|
|||||||
|
|
||||||
if(db_update_mode) {
|
if(db_update_mode) {
|
||||||
/* knock it off the maybe list */
|
/* knock it off the maybe list */
|
||||||
(void*)node = rbdelete((void*)&id,db_removed);
|
node = (int*)rbdelete((void*)&id,db_removed);
|
||||||
if(node) {
|
if(node) {
|
||||||
DPRINTF(ERR_DEBUG,"Knocked node %d from the list\n",*node);
|
DPRINTF(ERR_DEBUG,"Knocked node %d from the list\n",*node);
|
||||||
free(node);
|
free(node);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user