libdvbv5: Remove two warnings on 32 bits compilation
authorMauro Carvalho Chehab <m.chehab@samsung.com>
Thu, 17 Apr 2014 20:07:29 +0000 (17:07 -0300)
committerMauro Carvalho Chehab <m.chehab@samsung.com>
Thu, 17 Apr 2014 20:07:29 +0000 (17:07 -0300)
commit7936a65744bb85966d7fe002ea89ed41524622ce
tree7d1a285df62f61dc7a967473e5130c5540897591
parent81cf7a58f00005b21520fab240a3427a119e7bde
libdvbv5: Remove two warnings on 32 bits compilation

tables/mpeg_pes.c: In function 'dvb_mpeg_pes_print':
tables/mpeg_pes.c:129:4: warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'uint64_t' [-Wformat=]
    dvb_loginfo("   - pts                      %lx (%fs)", pes->optional->pts, (float) pes->optional->pts / 90000.0);
    ^
tables/mpeg_pes.c:131:4: warning: format '%lx' expects argument of type 'long unsigned int', but argument 3 has type 'uint64_t' [-Wformat=]
    dvb_loginfo("   - dts                      %lx (%fs)", pes->optional->dts, (float) pes->optional->dts/ 90000.0);
    ^

Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
lib/libdvbv5/tables/mpeg_pes.c