From f0e84304d78df39c0b50429a92e679ac7fc11fc7 Mon Sep 17 00:00:00 2001 From: Nathan Caldwell Date: Sun, 15 Jul 2007 20:09:11 -0600 Subject: [PATCH] Once again w->f_cur => w->f_pos. --- src/matroska.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/matroska.c b/src/matroska.c index aa1460b..e92d3c5 100644 --- a/src/matroska.c +++ b/src/matroska.c @@ -29,7 +29,7 @@ int mk_seekFile(mk_Writer *w, uint64_t pos) { if (fseek(w->fp, pos, SEEK_SET)) return -1; - w->f_cur = pos; + w->f_pos = pos; if (pos > w->f_eof) w->f_eof = pos; -- 2.11.4.GIT