summaryrefslogtreecommitdiffstats
path: root/dcop/KDE-ICE/iceauth.c
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2020-02-20 11:22:30 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2020-02-20 11:23:08 +0900
commitd94da50a46bea897c5122aae6d1f56e0a6780a82 (patch)
treeb7e5d3801b209ffd01efe2d009dccd9f154669b4 /dcop/KDE-ICE/iceauth.c
parent6350327928dc6961e0710a0ff6dc4cdcfa5d466e (diff)
downloadtdelibs-d94da50a46bea897c5122aae6d1f56e0a6780a82.tar.gz
tdelibs-d94da50a46bea897c5122aae6d1f56e0a6780a82.zip
Remove remaining 'register' instructions.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 30606e55f1a570463d837cb110b0bd4adba6643b)
Diffstat (limited to 'dcop/KDE-ICE/iceauth.c')
-rw-r--r--dcop/KDE-ICE/iceauth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dcop/KDE-ICE/iceauth.c b/dcop/KDE-ICE/iceauth.c
index 74db91367..609615643 100644
--- a/dcop/KDE-ICE/iceauth.c
+++ b/dcop/KDE-ICE/iceauth.c
@@ -45,7 +45,7 @@ extern Time_t time ();
#define Time_t time_t
#endif
-static int binaryEqual (register const char *a, const char *b, unsigned len);
+static int binaryEqual (const char *a, const char *b, unsigned len);
static int was_called_state;
@@ -264,7 +264,7 @@ char **errorStringRet;
* local routines
*/
-static int binaryEqual (register const char *a, const char *b, unsigned len)
+static int binaryEqual (const char *a, const char *b, unsigned len)
{
while (len--)
if (*a++ != *b++)