Commit c7cd49d1 authored by Warren Dukes's avatar Warren Dukes

change a break; to a return statement

git-svn-id: https://svn.musicpd.org/mpd/trunk@3444 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent a78c6002
...@@ -321,7 +321,7 @@ static int processBytesRead(Interface * interface, int bytesRead) { ...@@ -321,7 +321,7 @@ static int processBytesRead(Interface * interface, int bytesRead) {
} }
if(ret == COMMAND_RETURN_KILL || ret == COMMAND_RETURN_CLOSE) if(ret == COMMAND_RETURN_KILL || ret == COMMAND_RETURN_CLOSE)
{ {
break; return ret;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment