We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec4a785 commit 5f1b826Copy full SHA for 5f1b826
src/bin/pg_resetwal/pg_resetwal.c
@@ -76,7 +76,7 @@ static int WalSegSz;
76
static int set_wal_segsize;
77
78
static void CheckDataVersion(void);
79
-static bool ReadControlFile(void);
+static bool read_controlfile(void);
80
static void GuessControlValues(void);
81
static void PrintControlValues(bool guessed);
82
static void PrintNewControlValues(void);
@@ -393,7 +393,7 @@ main(int argc, char *argv[])
393
/*
394
* Attempt to read the existing pg_control file
395
*/
396
- if (!ReadControlFile())
+ if (!read_controlfile())
397
GuessControlValues();
398
399
@@ -578,7 +578,7 @@ CheckDataVersion(void)
578
* to the current format. (Currently we don't do anything of the sort.)
579
580
static bool
581
-ReadControlFile(void)
+read_controlfile(void)
582
{
583
int fd;
584
int len;
0 commit comments