Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 8ed36c3

Browse files
committed
More op_class cleanup.
1 parent 22cc0e1 commit 8ed36c3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/backend/utils/cache/lsyscache.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.16 1998/08/04 16:44:22 momjian Exp $
10+
* $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.17 1998/08/11 14:32:01 momjian Exp $
1111
*
1212
* NOTES
1313
* Eventually, the index information should go through here, too.
@@ -43,7 +43,7 @@
4343
*
4444
*/
4545
bool
46-
op_class(Oid opno, int32 opclass, Oid amopid)
46+
op_class(Oid oprno, int32 opclass, Oid amopid)
4747
{
4848
FormData_pg_amop amoptup;
4949

src/include/utils/lsyscache.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
*
77
* Copyright (c) 1994, Regents of the University of California
88
*
9-
* $Id: lsyscache.h,v 1.13 1998/08/11 05:09:30 momjian Exp $
9+
* $Id: lsyscache.h,v 1.14 1998/08/11 14:32:03 momjian Exp $
1010
*
1111
*-------------------------------------------------------------------------
1212
*/
@@ -16,7 +16,7 @@
1616
#include <access/attnum.h>
1717
#include <access/htup.h>
1818

19-
extern bool op_class(Oid opno, int32 opclass, Oid amopid);
19+
extern bool op_class(Oid oprno, int32 opclass, Oid amopid);
2020
extern char *get_attname(Oid relid, AttrNumber attnum);
2121
extern AttrNumber get_attnum(Oid relid, char *attname);
2222
extern Oid get_atttype(Oid relid, AttrNumber attnum);

0 commit comments

Comments
 (0)