diff options
author | Magnus Hagander | 2013-07-07 11:36:20 +0000 |
---|---|---|
committer | Magnus Hagander | 2013-07-07 11:38:47 +0000 |
commit | 62ba0c12e599a377b3c1f1c94e0018a7c6f348ec (patch) | |
tree | 24a181d4f46af0f04e652ed9cd3465fe1e9b1510 | |
parent | 08748b95e7baa52b7827b341fa988d268937d226 (diff) |
Fix include-guard
Looks like a cut/paste error in the original addition of the file.
Andres Freund
-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 c45af029974..76e205ef3b1 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 */ |