diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-06-05 07:29:25 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-06-05 07:29:25 +0000 |
| commit | 48165ec2262b73c5b81a6caabab66d883d013a83 (patch) | |
| tree | 08e878a2a1e7f76981406ac2b34729a510aecac6 /src/backend/commands/comment.c | |
| parent | c61db5ba2decf2e620f6ce3699d4b702957ed72a (diff) | |
| download | postgresql-48165ec2262b73c5b81a6caabab66d883d013a83.tar.gz | |
Latest round of fmgr updates. All functions with bool,char, or int2
inputs have been converted to newstyle. This should go a long way towards
fixing our portability problems with platforms where char and short
parameters are passed differently from int-width parameters. Still
more to do for the Alpha port however.
Diffstat (limited to 'src/backend/commands/comment.c')
| -rw-r--r-- | src/backend/commands/comment.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/comment.c b/src/backend/commands/comment.c index cd2c71359f..9739c68ffd 100644 --- a/src/backend/commands/comment.c +++ b/src/backend/commands/comment.c @@ -772,7 +772,7 @@ CommentOperator(char *opername, List *arguments, char *comment) /*** Get the procedure associated with the operator ***/ data = (Form_pg_operator) GETSTRUCT(optuple); - oid = regproctooid(data->oprcode); + oid = RegprocToOid(data->oprcode); if (oid == InvalidOid) elog(ERROR, "operator '%s' does not have an underlying function", opername); |
