summaryrefslogtreecommitdiffstats
path: root/flow/gsl/gslfilter.c
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-01-30 20:17:33 +0900
commit9d57e3ae1b71f4f21f56b7a45cb92b64250e2b04 (patch)
tree86303b250586d986ea4ef73c8a3059b172f3e8f1 /flow/gsl/gslfilter.c
parent8a30d26ad48c3cad6800c365c6d27ae2d676294c (diff)
downloadarts-9d57e3ae1b71f4f21f56b7a45cb92b64250e2b04.tar.gz
arts-9d57e3ae1b71f4f21f56b7a45cb92b64250e2b04.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'flow/gsl/gslfilter.c')
-rw-r--r--flow/gsl/gslfilter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/flow/gsl/gslfilter.c b/flow/gsl/gslfilter.c
index 524355b..9cf9b69 100644
--- a/flow/gsl/gslfilter.c
+++ b/flow/gsl/gslfilter.c
@@ -993,7 +993,7 @@ static inline gdouble /* Y */
filter_step_direct_canon_2 (GslIIRFilter *f,
gdouble X)
{
- register guint n = f->order;
+ guint n = f->order;
gdouble *a = f->a, *b = f->b, *w = f->w;
gdouble x, y, v;
@@ -1025,7 +1025,7 @@ static inline gdouble /* Y */
filter_step_direct_canon_1 (GslIIRFilter *f,
gdouble X)
{
- register guint n = f->order;
+ guint n = f->order;
gdouble *a = f->a, *b = f->b, *w = f->w;
gdouble y, v;