summaryrefslogtreecommitdiffstats
path: root/cpudetect.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 09:42:28 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-16 09:42:28 +0000
commit5423c418c257bca03b44db285797b0a82fb72f84 (patch)
treecc3a9217349d405012e929ed929284347ce77664 /cpudetect.c
parentc4f6f66f9e9dc486b5c2f189866050e41144d296 (diff)
downloadmpv-5423c418c257bca03b44db285797b0a82fb72f84.tar.bz2
mpv-5423c418c257bca03b44db285797b0a82fb72f84.tar.xz
cosmetics: Remove useless parentheses from return statements.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26791 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'cpudetect.c')
-rw-r--r--cpudetect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpudetect.c b/cpudetect.c
index 933f394d49..06287cd525 100644
--- a/cpudetect.c
+++ b/cpudetect.c
@@ -79,7 +79,7 @@ static int has_cpuid(void)
: "cc"
);
- return (a!=c);
+ return a != c;
}
#endif