diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-11-02 13:04:14 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-11-03 12:06:43 +0100 |
commit | 7be09a91c2994131385f27c2f7726e04cf3841ce (patch) | |
tree | 289bdac4959a92f583111bd75cce6716de32cd41 /libswresample/swresample.h | |
parent | a62242678ff96eade59960d1bbf65e4f3f03344f (diff) | |
download | ffmpeg-7be09a91c2994131385f27c2f7726e04cf3841ce.tar.gz |
lswr/swresample.h: use consistent inclusion guard header name
Diffstat (limited to 'libswresample/swresample.h')
-rw-r--r-- | libswresample/swresample.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libswresample/swresample.h b/libswresample/swresample.h index ac43cd25c4..2ce666e2d5 100644 --- a/libswresample/swresample.h +++ b/libswresample/swresample.h @@ -23,8 +23,8 @@ * libswresample public header */ -#ifndef SWR_H -#define SWR_H +#ifndef SWRESAMPLE_SWRESAMPLE_H +#define SWRESAMPLE_SWRESAMPLE_H #include <inttypes.h> #include "libavutil/samplefmt.h" @@ -217,4 +217,4 @@ const char *swresample_configuration(void); */ const char *swresample_license(void); -#endif +#endif /* SWRESAMPLE_SWRESAMPLE_H */ |