More op_class cleanup.
authorBruce Momjian
Tue, 11 Aug 1998 14:32:03 +0000 (14:32 +0000)
committerBruce Momjian
Tue, 11 Aug 1998 14:32:03 +0000 (14:32 +0000)
src/backend/utils/cache/lsyscache.c
src/include/utils/lsyscache.h

index 194f945400688601b54c1f0a6476f31d641a0a82..4aee62bb0554936c4b1809cca7f2d1eca5da6cc4 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *   $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.16 1998/08/04 16:44:22 momjian Exp $
+ *   $Header: /cvsroot/pgsql/src/backend/utils/cache/lsyscache.c,v 1.17 1998/08/11 14:32:01 momjian Exp $
  *
  * NOTES
  *   Eventually, the index information should go through here, too.
@@ -43,7 +43,7 @@
  *
  */
 bool
-op_class(Oid opno, int32 opclass, Oid amopid)
+op_class(Oid oprno, int32 opclass, Oid amopid)
 {
    FormData_pg_amop amoptup;
 
index 0fb21b89d5eccd8b65a14bf5e51393765204d476..0d8816da4e42f6cc822f3ebf0940c95fa121ba83 100644 (file)
@@ -6,7 +6,7 @@
  *
  * Copyright (c) 1994, Regents of the University of California
  *
- * $Id: lsyscache.h,v 1.13 1998/08/11 05:09:30 momjian Exp $
+ * $Id: lsyscache.h,v 1.14 1998/08/11 14:32:03 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -16,7 +16,7 @@
 #include 
 #include 
 
-extern bool op_class(Oid opno, int32 opclass, Oid amopid);
+extern bool op_class(Oid oprno, int32 opclass, Oid amopid);
 extern char *get_attname(Oid relid, AttrNumber attnum);
 extern AttrNumber get_attnum(Oid relid, char *attname);
 extern Oid get_atttype(Oid relid, AttrNumber attnum);