diff options
author | Peter Eisentraut | 2017-03-01 16:55:28 +0000 |
---|---|---|
committer | Peter Eisentraut | 2017-03-01 16:55:28 +0000 |
commit | 788af6f8541d5f30acec540e4fd3cb24f5347209 (patch) | |
tree | 16150f8aa906369c13578922ed33636c530bd529 /src/bin/pg_basebackup/pg_basebackup.c | |
parent | b5a388392dab4c4a7c0fbd6cd0ad7421eabfc5cf (diff) |
Move atooid() definition to a central place
Diffstat (limited to 'src/bin/pg_basebackup/pg_basebackup.c')
-rw-r--r-- | src/bin/pg_basebackup/pg_basebackup.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index 4b75e765bb8..0a4944dd66e 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -39,8 +39,6 @@ #include "streamutil.h" -#define atooid(x) ((Oid) strtoul((x), NULL, 10)) - typedef struct TablespaceListCell { struct TablespaceListCell *next; |