From 058a66c1803fa0d5bfdd50fc0652632c71f56778 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 9 Apr 2015 07:05:40 +0200 Subject: [PATCH] (oss.c) Turn C++ comment into C comment --- audio/drivers/oss.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/drivers/oss.c b/audio/drivers/oss.c index 6e0707f43c..3426fa5998 100644 --- a/audio/drivers/oss.c +++ b/audio/drivers/oss.c @@ -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;