summaryrefslogtreecommitdiffstats
path: root/libk3b/plugin/libsamplerate/float_cast.h
diff options
context:
space:
mode:
Diffstat (limited to 'libk3b/plugin/libsamplerate/float_cast.h')
-rw-r--r--libk3b/plugin/libsamplerate/float_cast.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/libk3b/plugin/libsamplerate/float_cast.h b/libk3b/plugin/libsamplerate/float_cast.h
index af362e3..7088007 100644
--- a/libk3b/plugin/libsamplerate/float_cast.h
+++ b/libk3b/plugin/libsamplerate/float_cast.h
@@ -121,7 +121,7 @@
#define lrintf float2int
inline int
- float2int (register float in)
+ float2int (float in)
{ long res [2] ;
asm
@@ -132,7 +132,7 @@
} /* float2int */
inline int
- double2int (register double in)
+ double2int (double in)
{ long res [2] ;
asm
@@ -157,7 +157,7 @@
#define lrintf float2int
inline static long int
- float2int (register float in)
+ float2int (float in)
{ int res [2] ;
__asm__ __volatile__
@@ -172,7 +172,7 @@
} /* lrintf */
inline static long int
- double2int (register double in)
+ double2int (double in)
{ int res [2] ;
__asm__ __volatile__