]> granicus.if.org Git - libvpx/commitdiff
libmkv: remove unused variable.
authorRalph Giles <giles@mozilla.com>
Sat, 1 Feb 2014 00:01:14 +0000 (16:01 -0800)
committerRalph Giles <giles@mozilla.com>
Sat, 1 Feb 2014 00:01:14 +0000 (16:01 -0800)
Fixes a warning.

Change-Id: I7f98ea7847cf8e776a4bbd65d273036280bfb5dd

third_party/libmkv/EbmlBufferWriter.c

index 574e4789981046a9b7909b3098becb33e77f0de6..116cbc4e7a93181bcecb46f919d4ccb88d668ad3 100644 (file)
@@ -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) {
   while (q != p) {
     --q;
-
-    unsigned long cbWritten;
     memcpy(&(glob->buf[glob->offset]), q, 1);
     glob->offset++;
   }