diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-17 09:16:21 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-17 09:16:21 +0000 |
commit | 52703a6459d164f30f850f31333946393f1dd414 (patch) | |
tree | 4489c1af2aa5a35a68a3ba79dac9584679a6934d /libavutil/avstring.h | |
parent | 7f3c02fc219428e47f5efeac687f37b8773b9204 (diff) | |
download | ffmpeg-52703a6459d164f30f850f31333946393f1dd414.tar.gz |
Use filename as multiple inclusion guard.
Originally committed as revision 10760 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/avstring.h')
-rw-r--r-- | libavutil/avstring.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/avstring.h b/libavutil/avstring.h index f25dd31d03..954174555c 100644 --- a/libavutil/avstring.h +++ b/libavutil/avstring.h @@ -18,8 +18,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef AVUTIL_STRING_H -#define AVUTIL_STRING_H +#ifndef AVUTIL_AVSTRING_H +#define AVUTIL_AVSTRING_H #include <stddef.h> @@ -87,4 +87,4 @@ size_t av_strlcat(char *dst, const char *src, size_t size); */ size_t av_strlcatf(char *dst, size_t size, const char *fmt, ...); -#endif /* AVUTIL_STRING_H */ +#endif /* AVUTIL_AVSTRING_H */ |