summaryrefslogtreecommitdiffstats
path: root/libmpdemux/ebml.c
diff options
context:
space:
mode:
authorUoti Urpala <uau@glyph.nonexistent.invalid>2010-01-26 13:53:27 +0200
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-01-27 14:26:48 +0200
commita07cfb35d3c516830dda851f1c6d371e229c69b1 (patch)
tree97c5a4b56e7743f426c1416eccd6374b286921d0 /libmpdemux/ebml.c
parent6e7531c4beb644fd161f7f370b1513d2ec243924 (diff)
downloadmpv-a07cfb35d3c516830dda851f1c6d371e229c69b1.tar.bz2
mpv-a07cfb35d3c516830dda851f1c6d371e229c69b1.tar.xz
demux_mkv: remove pointless 'long double' use
There was no remaining reason to use this type. The variables were assigned values with plain double precision anyway.
Diffstat (limited to 'libmpdemux/ebml.c')
-rw-r--r--libmpdemux/ebml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libmpdemux/ebml.c b/libmpdemux/ebml.c
index 6eae1ef2c1..8bbcad4db0 100644
--- a/libmpdemux/ebml.c
+++ b/libmpdemux/ebml.c
@@ -182,9 +182,9 @@ int64_t ebml_read_int(stream_t *s, uint64_t *length)
/*
* Read the next element as a float.
*/
-long double ebml_read_float(stream_t *s, uint64_t *length)
+double ebml_read_float(stream_t *s, uint64_t *length)
{
- long double value;
+ double value;
uint64_t len;
int l;