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:23:08 +0900 |
commit | d94da50a46bea897c5122aae6d1f56e0a6780a82 (patch) | |
tree | b7e5d3801b209ffd01efe2d009dccd9f154669b4 /tdecore/kmdcodec.cpp | |
parent | 6350327928dc6961e0710a0ff6dc4cdcfa5d466e (diff) | |
download | tdelibs-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 'tdecore/kmdcodec.cpp')
-rw-r--r-- | tdecore/kmdcodec.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdecore/kmdcodec.cpp b/tdecore/kmdcodec.cpp index 9b74c53b0..b5d540f53 100644 --- a/tdecore/kmdcodec.cpp +++ b/tdecore/kmdcodec.cpp @@ -137,7 +137,7 @@ const unsigned int KCodecs::maxQPLineLength = 70; /******************************** KCodecs ********************************/ // strchr(3) for broken systems. -static int rikFindChar(register const char * _s, const char c) +static int rikFindChar(const char * _s, const char c) { const char * s = _s; |