From 30606e55f1a570463d837cb110b0bd4adba6643b Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 20 Feb 2020 11:22:30 +0900 Subject: Remove remaining 'register' instructions. Signed-off-by: Michele Calgaro --- tdehtml/css/cssproperties.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tdehtml/css/cssproperties.c') diff --git a/tdehtml/css/cssproperties.c b/tdehtml/css/cssproperties.c index 1f4ba882b..3e6341ab7 100644 --- a/tdehtml/css/cssproperties.c +++ b/tdehtml/css/cssproperties.c @@ -39,7 +39,7 @@ struct props { int id; }; -static const struct props * findProp (register const char *str, unsigned int len); +static const struct props * findProp (const char *str, unsigned int len); /* maximum key range = 469, duplicates = 0 */ #ifdef __GNUC__ @@ -50,7 +50,7 @@ inline #endif #endif static unsigned int -hash_prop (register const char *str, unsigned int len) +hash_prop (const char *str, unsigned int len) { static const unsigned short asso_values[] = { @@ -189,7 +189,7 @@ hash_prop (register const char *str, unsigned int len) __inline #endif const struct props * -findProp (register const char *str, unsigned int len) +findProp (const char *str, unsigned int len) { enum { -- cgit v1.2.1