diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-02-25 00:48:12 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-02-25 00:48:12 +0000 |
commit | 5dc1f14b931db97076d32bb1285354fa304ebae2 (patch) | |
tree | b0ca46382e64786d45dcee230a356ad381ae891b /src/input/libdvdnav/decoder.c | |
parent | cdeee7eb6710adb3fee02c4e5f1e7493f2af70cc (diff) | |
download | xine-lib-5dc1f14b931db97076d32bb1285354fa304ebae2.tar.gz xine-lib-5dc1f14b931db97076d32bb1285354fa304ebae2.tar.bz2 |
Compiler warning fixes.
Diffstat (limited to 'src/input/libdvdnav/decoder.c')
-rw-r--r-- | src/input/libdvdnav/decoder.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/libdvdnav/decoder.c b/src/input/libdvdnav/decoder.c index 3dff4a080..4ae64377b 100644 --- a/src/input/libdvdnav/decoder.c +++ b/src/input/libdvdnav/decoder.c @@ -569,7 +569,7 @@ static int32_t eval_command(uint8_t *bytes, registers_t* registers, link_t *retu if(command.instruction & ~ command.examined) { fprintf(MSG_OUT, "libdvdnav: decoder.c: [WARNING, unknown bits:"); - fprintf(MSG_OUT, " %08llx", (command.instruction & ~ command.examined) ); + fprintf(MSG_OUT, " %08"PRIx64, (command.instruction & ~ command.examined) ); fprintf(MSG_OUT, "]\n"); } |