Skip to content
This repository has been archived by the owner on Apr 14, 2020. It is now read-only.

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
Ullaakut committed Jun 10, 2018
1 parent 6fb5833 commit 127d61f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/file_input.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ bool configure_file_input(t_server *serv) {
g_signal_connect(serv->factory, "media-configure", (GCallback)media_configure,
app);

if (!access(input_path.c_str(), F_OK) != -1) {
return false;
if (access(input_path.c_str(), F_OK) != -1) {
return true;
}
return true;
return false;
}

0 comments on commit 127d61f

Please sign in to comment.