summaryrefslogtreecommitdiff
path: root/src/bin/pg_basebackup/streamutil.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2014-05-06 12:12:18 -0400
committerBruce Momjian <bruce@momjian.us>2014-05-06 12:12:18 -0400
commit0a7832005792fa6dad171f9cadb8d587fe0dd800 (patch)
tree365cfc42c521a52607e41394b08ef44d338d8fc1 /src/bin/pg_basebackup/streamutil.c
parentfb85cd4320414c3f6e9c8bc69ec944200ae1e493 (diff)
pgindent run for 9.4
This includes removing tabs after periods in C comments, which was applied to back branches, so this change should not effect backpatching.
Diffstat (limited to 'src/bin/pg_basebackup/streamutil.c')
-rw-r--r--src/bin/pg_basebackup/streamutil.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/pg_basebackup/streamutil.c b/src/bin/pg_basebackup/streamutil.c
index e440dc4e244..1100260c05a 100644
--- a/src/bin/pg_basebackup/streamutil.c
+++ b/src/bin/pg_basebackup/streamutil.c
@@ -255,7 +255,7 @@ feGetCurrentTimestamp(void)
*/
void
feTimestampDifference(int64 start_time, int64 stop_time,
- long *secs, int *microsecs)
+ long *secs, int *microsecs)
{
int64 diff = stop_time - start_time;
@@ -277,8 +277,8 @@ feTimestampDifference(int64 start_time, int64 stop_time,
*/
bool
feTimestampDifferenceExceeds(int64 start_time,
- int64 stop_time,
- int msec)
+ int64 stop_time,
+ int msec)
{
int64 diff = stop_time - start_time;