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:36:20 +0200 |
commit | 5a348fe077916048cfba3eab3f8210583a6bcb14 (patch) | |
tree | 4f807aaba1b1f0420641ff625a88a49e8ce7b52b /src | |
parent | 55f100efc67a0054db586c1804760fb18cfc7b79 (diff) | |
download | postgresql-5a348fe077916048cfba3eab3f8210583a6bcb14.tar.gz postgresql-5a348fe077916048cfba3eab3f8210583a6bcb14.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 e1c4ab455d5..133a07591ce 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 */ |