# HG changeset patch # User reimar # Date 1396808281 0 # Node ID ef4a44d32a25f5c5737b1c7794943bdf4704941b # Parent cc50b327cffaea77e583ca9e8f32711a10003e72 ae_towlame: Remove pointless context size print. It used an incorrect format string, sizeof() is not always an int. diff -r cc50b327cffa -r ef4a44d32a25 libmpcodecs/ae_twolame.c --- a/libmpcodecs/ae_twolame.c Sun Apr 06 18:13:47 2014 +0000 +++ b/libmpcodecs/ae_twolame.c Sun Apr 06 18:18:01 2014 +0000 @@ -168,7 +168,7 @@ ctx = calloc(1, sizeof(mpae_twolame_ctx)); if(ctx == NULL) { - mp_msg(MSGT_MENCODER, MSGL_ERR, "ae_twolame, couldn't alloc a %d bytes context, exiting\n", sizeof(mpae_twolame_ctx)); + mp_msg(MSGT_MENCODER, MSGL_ERR, "ae_twolame, couldn't alloc context, exiting\n"); return 0; }