From: Nathan Caldwell Date: Tue, 13 Jan 2009 05:39:29 +0000 (-0700) Subject: Remove printfs in mk_createAttachment() X-Git-Tag: 0.6.3.1~5 X-Git-Url: https://repo.or.cz/w/libmkv.git/commitdiff_plain/cc9f11d7da9d57260783d6a4cab88e061b96bf05 Remove printfs in mk_createAttachment() --- diff --git a/src/attachments.c b/src/attachments.c index 0f730a7..e9b1c27 100644 --- a/src/attachments.c +++ b/src/attachments.c @@ -40,18 +40,14 @@ int mk_createAttachment( */ file_uid = random(); -printf("2att %p\n", w->attachments); if (w->attachments == NULL) { -printf("create attachments context\n"); /* Attachments */ if ((w->attachments = mk_createContext(w, w->root, MATROSKA_ID_ATTACHMENTS)) == NULL) return -1; } /* AttachedFile */ -printf("create attachedfile context\n"); if ((attach = mk_createContext(w, w->attachments, MATROSKA_ID_ATTACHEDFILE)) == NULL) return -1; -printf("done attachedfile context\n"); /* FileName */ CHECK(mk_writeStr(attach, MATROSKA_ID_FILENAME, name));