diff options
author | Stephen Frost <sfrost@snowman.net> | 2013-06-01 09:38:15 -0400 |
---|---|---|
committer | Stephen Frost <sfrost@snowman.net> | 2013-06-01 09:38:15 -0400 |
commit | 551938ae2284975b53d665fa8a82a7e1f3514dda (patch) | |
tree | 14ceecfcc9413f1b3366393227b2604bf02e2bf1 /src/backend/access/transam/xlog.c | |
parent | dedf7e9919a2dc42370c0b218728e1556985de6a (diff) | |
download | postgresql-551938ae2284975b53d665fa8a82a7e1f3514dda.tar.gz postgresql-551938ae2284975b53d665fa8a82a7e1f3514dda.zip |
Post-pgindent cleanup
Make slightly better decisions about indentation than what pgindent
is capable of. Mostly breaking out long function calls into one
line per argument, with a few other minor adjustments.
No functional changes- all whitespace.
pgindent ran cleanly (didn't change anything) after.
Passes all regressions.
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r-- | src/backend/access/transam/xlog.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c index dcd33c931c0..fbc722cd93f 100644 --- a/src/backend/access/transam/xlog.c +++ b/src/backend/access/transam/xlog.c @@ -1546,7 +1546,8 @@ XLogWrite(XLogwrtRqst WriteRqst, bool flexible, bool xlog_switch) */ if (LogwrtResult.Write >= XLogCtl->xlblocks[curridx]) elog(PANIC, "xlog write request %X/%X is past end of log %X/%X", - (uint32) (LogwrtResult.Write >> 32), (uint32) LogwrtResult.Write, + (uint32) (LogwrtResult.Write >> 32), + (uint32) LogwrtResult.Write, (uint32) (XLogCtl->xlblocks[curridx] >> 32), (uint32) XLogCtl->xlblocks[curridx]); @@ -7381,7 +7382,8 @@ CreateRestartPoint(int flags) { ereport(DEBUG2, (errmsg("skipping restartpoint, already performed at %X/%X", - (uint32) (lastCheckPoint.redo >> 32), (uint32) lastCheckPoint.redo))); + (uint32) (lastCheckPoint.redo >> 32), + (uint32) lastCheckPoint.redo))); UpdateMinRecoveryPoint(InvalidXLogRecPtr, true); if (flags & CHECKPOINT_IS_SHUTDOWN) |