diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-20 11:22:30 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2020-02-20 11:22:30 +0900 |
commit | 30606e55f1a570463d837cb110b0bd4adba6643b (patch) | |
tree | 7e7ca7c48fc9b880fb67c659e9f6024dc5774fc4 /dcop | |
parent | c088fbf55bde4faa68a6d51ba44085bd97c1e4e2 (diff) | |
download | tdelibs-30606e55f1a570463d837cb110b0bd4adba6643b.tar.gz tdelibs-30606e55f1a570463d837cb110b0bd4adba6643b.zip |
Remove remaining 'register' instructions.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'dcop')
-rw-r--r-- | dcop/KDE-ICE/iceauth.c | 4 |
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++) |