summaryrefslogtreecommitdiff
path: root/tools/aif2pcm/extended.c
diff options
context:
space:
mode:
authorYamaArashi <shadow962@live.com>2016-09-10 13:27:38 -0700
committerYamaArashi <shadow962@live.com>2016-09-10 13:27:38 -0700
commit9cbf1aae195248d010bda8dabf7f72e1ffb58bf4 (patch)
treed323be8793ab9982c36398cfe30eb752365413e8 /tools/aif2pcm/extended.c
parentf20d0afa16e2a2cd18692bc90ab79a5d5ce10a8e (diff)
make aif2pcm compatible with VS2015
Diffstat (limited to 'tools/aif2pcm/extended.c')
-rw-r--r--tools/aif2pcm/extended.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/aif2pcm/extended.c b/tools/aif2pcm/extended.c
index 067019661..7ec74a887 100644
--- a/tools/aif2pcm/extended.c
+++ b/tools/aif2pcm/extended.c
@@ -44,11 +44,11 @@
/*
* IEEE 754 Extended Precision
- *
+ *
* Implementation here is the 80-bit extended precision
* format of Motorola 68881, Motorola 68882 and Motorola
* 68040 FPUs, as well as Intel 80x87 FPUs.
- *
+ *
* See:
* http://www.freescale.com/files/32bit/doc/fact_sheet/BR509.pdf
*/
@@ -112,7 +112,7 @@ ieee754_write_extended(double in, unsigned char* out)
done:
lexp = ((unsigned int) exp) >> 8;
hexp = ((unsigned int) exp) & 0xFF;
-
+
/* big endian */
out[0] = ((unsigned char) sgn) << 7;
out[0] |= (unsigned char) lexp;