diff --git a/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp b/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp index 2945c799dc..5e7cdeb147 100644 --- a/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp +++ b/stepmania/src/arch/MemoryCard/MemoryCardDriverThreaded_Linux.cpp @@ -156,7 +156,8 @@ void MemoryCardDriverThreaded_Linux::MountThreadMain() case 0: // no change. Poll again. continue; case -1: - LOG->Warn( "Error polling" ); + if( errno != EINTR ) + LOG->Warn( "Error polling: %s", strerror(errno) ); continue; } }