diff options
author | Magnus Hagander <magnus@hagander.net> | 2013-07-07 13:36:20 +0200 |
---|---|---|
committer | Magnus Hagander <magnus@hagander.net> | 2013-07-07 13:38:57 +0200 |
commit | 271f7b0f8ab8f584fafc7703f1a9ac14d81ca21d (patch) | |
tree | 6bb68de2e16422b667c781dc94539726a5593f24 /src | |
parent | 6dc4e62d0457b42969732aae0651a4bf25565ad5 (diff) | |
download | postgresql-271f7b0f8ab8f584fafc7703f1a9ac14d81ca21d.tar.gz postgresql-271f7b0f8ab8f584fafc7703f1a9ac14d81ca21d.zip |
Fix include-guard
Looks like a cut/paste error in the original addition of the file.
Andres Freund
Diffstat (limited to 'src')
-rw-r--r-- | src/include/utils/attoptcache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/utils/attoptcache.h b/src/include/utils/attoptcache.h index 053e7ae6916..58d25aa31a0 100644 --- a/src/include/utils/attoptcache.h +++ b/src/include/utils/attoptcache.h @@ -10,8 +10,8 @@ * *------------------------------------------------------------------------- */ -#ifndef SPCCACHE_H -#define SPCCACHE_H +#ifndef ATTOPTCACHE_H +#define ATTOPTCACHE_H /* * Attribute options. @@ -25,4 +25,4 @@ typedef struct AttributeOpts AttributeOpts *get_attribute_options(Oid spcid, int attnum); -#endif /* SPCCACHE_H */ +#endif /* ATTOPTCACHE_H */ |