Commit 7a8a63a2 authored by Ralph Giles's avatar Ralph Giles
Browse files

libmkv: remove unused variable.

Fixes a warning.

Change-Id: I7f98ea7847cf8e776a4bbd65d273036280bfb5dd
Showing with 0 additions and 2 deletions
...@@ -18,8 +18,6 @@ void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len) { ...@@ -18,8 +18,6 @@ void Ebml_Write(EbmlGlobal *glob, const void *buffer_in, unsigned long len) {
static void _Serialize(EbmlGlobal *glob, const unsigned char *p, const unsigned char *q) { static void _Serialize(EbmlGlobal *glob, const unsigned char *p, const unsigned char *q) {
while (q != p) { while (q != p) {
--q; --q;
unsigned long cbWritten;
memcpy(&(glob->buf[glob->offset]), q, 1); memcpy(&(glob->buf[glob->offset]), q, 1);
glob->offset++; glob->offset++;
} }
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment