Skip to content
Snippets Groups Projects
Commit 5accb8ac authored by Philipp Schafft's avatar Philipp Schafft :lion_face:
Browse files

Fix: Corrected invalid return value

parent 34771565
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ static inline int navigation_history_pop(navigation_history_t *history) ...@@ -85,7 +85,7 @@ static inline int navigation_history_pop(navigation_history_t *history)
history->fill--; history->fill--;
refobject_unref(history->history[history->fill]); refobject_unref(history->history[history->fill]);
history->history[history->fill] = NULL; history->history[history->fill] = NULL;
return 1; return 0;
} }
static inline int navigation_history_push(navigation_history_t *history, mount_identifier_t *identifier) static inline int navigation_history_push(navigation_history_t *history, mount_identifier_t *identifier)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment