diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-01-28 18:25:13 -0800 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-01-31 15:44:11 -0800 |
commit | 180f9a09588d1c68983692bb5245213956fdde11 (patch) | |
tree | acde2f7c3e24f7fab834cfafbeeebfc6b8785b8a /libavutil/mips | |
parent | def56677e58de9aaa516a738b6469747662ac372 (diff) | |
download | ffmpeg-180f9a09588d1c68983692bb5245213956fdde11.tar.gz |
all: Make header guard names consistent
Diffstat (limited to 'libavutil/mips')
-rw-r--r-- | libavutil/mips/libm_mips.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavutil/mips/libm_mips.h b/libavutil/mips/libm_mips.h index 8853bbc751..757867bce9 100644 --- a/libavutil/mips/libm_mips.h +++ b/libavutil/mips/libm_mips.h @@ -50,8 +50,8 @@ * MIPS optimization for some libm functions */ -#ifndef AVUTIL_LIBM_MIPS_H -#define AVUTIL_LIBM_MIPS_H +#ifndef AVUTIL_MIPS_LIBM_MIPS_H +#define AVUTIL_MIPS_LIBM_MIPS_H static av_always_inline av_const long int lrintf_mips(float x) { @@ -70,4 +70,4 @@ static av_always_inline av_const long int lrintf_mips(float x) #define lrintf(x) lrintf_mips(x) #define HAVE_LRINTF 1 -#endif /* AVUTIL_LIBM_MIPS_H */ +#endif /* AVUTIL_MIPS_LIBM_MIPS_H */ |