summaryrefslogtreecommitdiffstats
path: root/mcop
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 23:52:40 +0900
commit1d42e0d84243713d77387215a966412ad9e3bece (patch)
treef03343d83a253b1ecfbf72492f7b186835219919 /mcop
parentef4a1c768f727d55161c577050d6ac6ffa499cab (diff)
downloadarts-1d42e0d84243713d77387215a966412ad9e3bece.tar.gz
arts-1d42e0d84243713d77387215a966412ad9e3bece.zip
Removed explicit usage of the 'register' keyword.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9d57e3ae1b71f4f21f56b7a45cb92b64250e2b04)
Diffstat (limited to 'mcop')
-rw-r--r--mcop/debug.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcop/debug.cc b/mcop/debug.cc
index be97528..d2d00f8 100644
--- a/mcop/debug.cc
+++ b/mcop/debug.cc
@@ -498,7 +498,7 @@ printf_string_upper_bound (const gchar *format,
while (*format)
{
- register gchar c = *format++;
+ gchar c = *format++;
if (c != '%')
len += 1;