Author: nicodvb Date: Sun Apr 29 13:39:21 2007 New Revision: 919 Log: replaced 08llx with PRIx64; patch by Diego Petteno' Modified: trunk/libdvdnav2/src/vm/decoder.c trunk/libdvdnav2/src/vm/vmcmd.c Modified: trunk/libdvdnav2/src/vm/decoder.c ============================================================================== --- trunk/libdvdnav2/src/vm/decoder.c (original) +++ trunk/libdvdnav2/src/vm/decoder.c Sun Apr 29 13:39:21 2007 @@ -572,7 +572,7 @@ static int32_t eval_command(uint8_t *byt 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"); } Modified: trunk/libdvdnav2/src/vm/vmcmd.c ============================================================================== --- trunk/libdvdnav2/src/vm/vmcmd.c (original) +++ trunk/libdvdnav2/src/vm/vmcmd.c Sun Apr 29 13:39:21 2007 @@ -520,7 +520,7 @@ void vm_print_mnemonic(vm_cmd_t *vm_comm if(command.instruction & ~ command.examined) { fprintf(MSG_OUT, " libdvdnav: vmcmd.c: [WARNING, unknown bits:"); - fprintf(MSG_OUT, " %08llx", (command.instruction & ~ command.examined) ); + fprintf(MSG_OUT, " %08"PRIx64, (command.instruction & ~ command.examined) ); fprintf(MSG_OUT, "]"); } }
participants (1)
-
nicodvb