Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny Smith <dannysmith@users.sourceforge.net>2008-12-09 05:42:21 +0300
committerDanny Smith <dannysmith@users.sourceforge.net>2008-12-09 05:42:21 +0300
commitcf2f4a6aefcff2afbb011d35f09c9c7154c6a463 (patch)
tree60785875637a4cb37eaf22c7f8258b12bf16f629 /winsup/mingw
parentd27ebea92356f6460f851e9e9d997de25c9c6390 (diff)
Committed as obvious.
2008-12-08 Dmitry G. Gorbachev <d.g.gorbachev@gmail.com> * cpu_features.c (__cpu_features_init): Remove erroneous ';'.
Diffstat (limited to 'winsup/mingw')
-rw-r--r--winsup/mingw/ChangeLog4
-rwxr-xr-xwinsup/mingw/cpu_features.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/winsup/mingw/ChangeLog b/winsup/mingw/ChangeLog
index affe5e164..22cbfcaad 100644
--- a/winsup/mingw/ChangeLog
+++ b/winsup/mingw/ChangeLog
@@ -1,3 +1,7 @@
+2008-12-08 Dmitry G. Gorbachev <d.g.gorbachev@gmail.com>
+
+ * cpu_features.c (__cpu_features_init): Remove erroneous ';'.
+
2008-10-28 Keith Marshall <keithmarshall@users.sourceforge.net>
Correct some binary distribution packaging defects.
diff --git a/winsup/mingw/cpu_features.c b/winsup/mingw/cpu_features.c
index 0eccfbfe3..5e2c26557 100755
--- a/winsup/mingw/cpu_features.c
+++ b/winsup/mingw/cpu_features.c
@@ -71,7 +71,7 @@ void __cpu_features_init (void)
if (eax < 0x80000001)
return;
__cpuid (0x80000001, eax, ebx, ecx, edx);
- if (edx & EDX_3DNOW);
+ if (edx & EDX_3DNOW)
__cpu_features |= _CRT_3DNOW;
if (edx & EDX_3DNOWP)
__cpu_features |= _CRT_3DNOWP;