Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2015-12-07 21:42:28 +0300
committerTimothy Gu <timothygu99@gmail.com>2015-12-07 21:43:43 +0300
commit006d3e97fc8f44488f5935607bb45fce19ea641a (patch)
tree6bd134c62cfe371afdca0971de81f743a6d35850 /libavutil/internal.h
parenta8bb81a05c519dd3f36cc341e5fb448f6d17fa73 (diff)
cosmetics: Fix weird indentations
Diffstat (limited to 'libavutil/internal.h')
-rw-r--r--libavutil/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/internal.h b/libavutil/internal.h
index 8d2d8759bf..f86b7fb741 100644
--- a/libavutil/internal.h
+++ b/libavutil/internal.h
@@ -281,7 +281,7 @@ static av_always_inline av_const int64_t ff_rint64_clip(double a, int64_t amin,
if (a >= 9223372036854775808.0)
return amax;
if (a <= -9223372036854775808.0)
- return amin;
+ return amin;
// safe to call llrint and clip accordingly
res = llrint(a);