(oss.c) Turn C++ comment into C comment

This commit is contained in:
twinaphex 2015-04-09 07:05:40 +02:00
parent 63c97763e7
commit 058a66c180

View File

@ -191,7 +191,7 @@ static size_t oss_buffer_size(void *data)
if (ioctl(*fd, SNDCTL_DSP_GETOSPACE, &info) < 0)
{
RARCH_ERR("SNDCTL_DSP_GETOSPACE failed ...\n");
return 1; // Return something non-zero to avoid SIGFPE.
return 1; /* Return something non-zero to avoid SIGFPE. */
}
return info.fragsize * info.fragstotal;