1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-16 06:15:24 +00:00

Fix: Corrected invalid return value

This commit is contained in:
Philipp Schafft 2020-10-25 13:04:33 +00:00
parent b5b5e9cc07
commit 8e224f45c2

View File

@ -85,7 +85,7 @@ static inline int navigation_history_pop(navigation_history_t *history)
history->fill--;
refobject_unref(history->history[history->fill]);
history->history[history->fill] = NULL;
return 1;
return 0;
}
static inline int navigation_history_push(navigation_history_t *history, mount_identifier_t *identifier)