mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Remove useless casts
Some of these were uselessly casting away "const", some were just nearby, but they where all unnecessary anyway. Discussion: https://www.postgresql.org/message-id/flat/53a28052-f9f3-1808-fed9-460fd43035ab%402ndquadrant.com
This commit is contained in:
@ -59,7 +59,7 @@ static pg_unicode_decomposition *
|
||||
get_code_entry(pg_wchar code)
|
||||
{
|
||||
return bsearch(&(code),
|
||||
(void *) UnicodeDecompMain,
|
||||
UnicodeDecompMain,
|
||||
lengthof(UnicodeDecompMain),
|
||||
sizeof(pg_unicode_decomposition),
|
||||
conv_compare);
|
||||
|
Reference in New Issue
Block a user