mirror of
https://github.com/postgres/postgres.git
synced 2025-08-28 18:48:04 +03:00
Remove more (void) and fix -Wall warnings.
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/transsup.c,v 1.7 1996/12/14 05:20:39 vadim Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/transsup.c,v 1.8 1997/08/12 22:51:57 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* This file contains support functions for the high
|
||||
@@ -641,7 +641,7 @@ TransGetLastRecordedTransaction(Relation relation,
|
||||
baseXid = blockNumber * TP_NumXidStatusPerBlock;
|
||||
|
||||
/* XXX ???? xid won't get returned! - AY '94 */
|
||||
(void) TransBlockGetLastTransactionIdStatus(block, baseXid, &xid);
|
||||
TransBlockGetLastTransactionIdStatus(block, baseXid, &xid);
|
||||
|
||||
ReleaseBuffer(buffer);
|
||||
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/varsup.c,v 1.7 1997/01/16 07:59:11 vadim Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/varsup.c,v 1.8 1997/08/12 22:51:58 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -159,7 +159,7 @@ VariableRelationPutNextXid(TransactionId xid)
|
||||
|
||||
flushmode = SetBufferWriteMode (BUFFER_FLUSH_WRITE);
|
||||
WriteBuffer(buf);
|
||||
(void) SetBufferWriteMode (flushmode);
|
||||
SetBufferWriteMode (flushmode);
|
||||
}
|
||||
|
||||
/* --------------------------------
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.10 1997/04/02 03:38:02 vadim Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.11 1997/08/12 22:52:01 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Transaction aborts can now occur two ways:
|
||||
@@ -506,7 +506,7 @@ AtStart_Memory()
|
||||
* tell system to allocate in the blank portal context
|
||||
* ----------------
|
||||
*/
|
||||
(void) MemoryContextSwitchTo(portalContext);
|
||||
MemoryContextSwitchTo(portalContext);
|
||||
StartPortalAllocMode(DefaultAllocMode, 0);
|
||||
}
|
||||
|
||||
@@ -612,7 +612,7 @@ AtCommit_Memory()
|
||||
* ----------------
|
||||
*/
|
||||
EndPortalAllocMode();
|
||||
(void) MemoryContextSwitchTo(TopMemoryContext);
|
||||
MemoryContextSwitchTo(TopMemoryContext);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------
|
||||
@@ -691,7 +691,7 @@ AtAbort_Memory()
|
||||
* portal memory context (until the next transaction).
|
||||
* ----------------
|
||||
*/
|
||||
(void) MemoryContextSwitchTo(TopMemoryContext);
|
||||
MemoryContextSwitchTo(TopMemoryContext);
|
||||
}
|
||||
|
||||
/* ----------------------------------------------------------------
|
||||
|
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/xid.c,v 1.5 1996/11/10 02:59:19 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/access/transam/Attic/xid.c,v 1.6 1997/08/12 22:52:02 momjian Exp $
|
||||
*
|
||||
* OLD COMMENTS
|
||||
* XXX WARNING
|
||||
@@ -59,7 +59,7 @@ xidout(TransactionId transactionId)
|
||||
/* maximum 32 bit unsigned integer representation takes 10 chars */
|
||||
representation = palloc(11);
|
||||
|
||||
(void)sprintf(representation, "%u", transactionId);
|
||||
sprintf(representation, "%u", transactionId);
|
||||
|
||||
return (representation);
|
||||
|
||||
|
Reference in New Issue
Block a user