diff options
Diffstat (limited to 'tdehtml/css/cssproperties.c')
-rw-r--r-- | tdehtml/css/cssproperties.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 { |