From 0793a1d0804217ce0d5a987149654e71ccda330d Mon Sep 17 00:00:00 2001 From: Mickael Savinaud Date: Sat, 10 Dec 2016 23:27:19 +0100 Subject: [PATCH] remove unuseful comments --- src/lib/openjp2/bio.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/openjp2/bio.c b/src/lib/openjp2/bio.c index 269769b4..3dc83f3f 100644 --- a/src/lib/openjp2/bio.c +++ b/src/lib/openjp2/bio.c @@ -100,7 +100,7 @@ static OPJ_BOOL opj_bio_bytein(opj_bio_t *bio) { static void opj_bio_putbit(opj_bio_t *bio, OPJ_UINT32 b) { if (bio->ct == 0) { - opj_bio_byteout(bio); /* MSD: why not check the return value of this function ? */ + opj_bio_byteout(bio); } bio->ct--; bio->buf |= b << bio->ct; @@ -108,7 +108,7 @@ static void opj_bio_putbit(opj_bio_t *bio, OPJ_UINT32 b) { static OPJ_UINT32 opj_bio_getbit(opj_bio_t *bio) { if (bio->ct == 0) { - opj_bio_bytein(bio); /* MSD: why not check the return value of this function ? */ + opj_bio_bytein(bio); } bio->ct--; return (bio->buf >> bio->ct) & 1;