fix a spelling error in a debug msg

git-svn-id: https://svn.musicpd.org/mpd/trunk@3103 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
Warren Dukes 2005-03-19 12:39:50 +00:00
parent a4a3fef09c
commit 7ecd93e73e

View File

@ -210,7 +210,7 @@ void closeAllListenSockets() {
DEBUG("closeAllListenSockets called\n");
for(i=0; i<numberOfListenSockets; i++) {
DEBUG("closing listen scoket %i\n", i);
DEBUG("closing listen socket %i\n", i);
while(close(listenSockets[i]) < 0 && errno==EINTR);
}