pgsql: Declare the arguments of AllocateFile() as const char *, not char

From: tgl(at)postgresql(dot)org (Tom Lane)
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Declare the arguments of AllocateFile() as const char *, not char
Date: 2006-03-04 21:32:47
Message-ID: 20060304213247.42FB69DCDB7@postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Log Message:
-----------
Declare the arguments of AllocateFile() as const char *, not char *.
This is consistent with the standard definition of fopen().

Modified Files:
--------------
pgsql/src/include/storage:
fd.h (r1.54 -> r1.55)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/storage/fd.h.diff?r1=1.54&r2=1.55)
pgsql/src/backend/storage/file:
fd.c (r1.125 -> r1.126)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/file/fd.c.diff?r1=1.125&r2=1.126)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2006-03-04 22:19:31 pgsql: Support include directives in postgresql.conf.
Previous Message Tom Lane 2006-03-04 19:30:12 pgsql: Incorporate a couple of recent tuplesort.c improvements into