mirror of
https://github.com/postgres/postgres.git
synced 2025-07-15 19:21:59 +03:00
More minor cosmetic improvements:
- remove another senseless "extern" keyword that was applied to a function definition - change a foo more function signatures from "some_type foo()" to "some_type foo(void)" - rewrite another K&R style function definition - make the type of the "action" function pointer in the KeyWord struct in src/backend/utils/adt/formatting.c more precise
This commit is contained in:
@ -4,7 +4,7 @@
|
||||
* (currently mule internal code (mic) is used)
|
||||
* Tatsuo Ishii
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.47 2004/08/29 05:06:51 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/mb/mbutils.c,v 1.48 2004/10/13 01:25:12 neilc Exp $
|
||||
*/
|
||||
#include "postgres.h"
|
||||
|
||||
@ -574,7 +574,7 @@ SetDatabaseEncoding(int encoding)
|
||||
}
|
||||
|
||||
void
|
||||
SetDefaultClientEncoding()
|
||||
SetDefaultClientEncoding(void)
|
||||
{
|
||||
ClientEncoding = &pg_enc2name_tbl[GetDatabaseEncoding()];
|
||||
}
|
||||
|
Reference in New Issue
Block a user