summaryrefslogtreecommitdiffstats
path: root/libk3b/plugin/libsamplerate
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:47 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 23:52:52 +0900
commit23d6d04803704b1ae3b6bdd29aa49e5fb2301f2f (patch)
treecf378199125aefbc31e8c51c636257f35ef55fd2 /libk3b/plugin/libsamplerate
parent3e15776c6f7e5fc82548ed70ff808b9bd8b10151 (diff)
downloadk3b-23d6d04803704b1ae3b6bdd29aa49e5fb2301f2f.tar.gz
k3b-23d6d04803704b1ae3b6bdd29aa49e5fb2301f2f.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b557321865d43aa125591f965a459067ee93bc89)
Diffstat (limited to 'libk3b/plugin/libsamplerate')
-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__