summaryrefslogtreecommitdiff
path: root/src/asm/ftola.c
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2013-03-12 21:50:38 +0000
committerTim Angus <tim@ngus.net>2013-03-19 16:41:19 +0000
commitefd1b888101a4ba1e33e1ade69ca891019276468 (patch)
treeb0f39b271596a5241fd22ab001f83e0a0b5bba98 /src/asm/ftola.c
parent9ffe36a193581b5bd037cbe829e640cf79be6f9c (diff)
Fix some clang warnings
Diffstat (limited to 'src/asm/ftola.c')
-rw-r--r--src/asm/ftola.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/asm/ftola.c b/src/asm/ftola.c
index cfa44381..f1bea62e 100644
--- a/src/asm/ftola.c
+++ b/src/asm/ftola.c
@@ -62,7 +62,7 @@ int qvmftolsse(void)
long qftolx87(float f)
{
long retval;
- unsigned short oldcw;
+ unsigned short oldcw = 0;
__asm__ volatile
(
@@ -82,7 +82,7 @@ long qftolx87(float f)
int qvmftolx87(void)
{
int retval;
- unsigned short oldcw;
+ unsigned short oldcw = 0;
__asm__ volatile
(