Changeset 17629 in vbox for trunk/src/VBox/Disassembler/DisasmTest.cpp
- Timestamp:
- Mar 10, 2009 2:23:16 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Disassembler/DisasmTest.cpp
r13835 r17629 58 58 if (RT_SUCCESS(DISInstr(&cpu, pInstr, 0, &cb, szOutput))) 59 59 { 60 printf( szOutput);60 printf("%s", szOutput); 61 61 } 62 62 else … … 82 82 cpu.mode = CPUMODE_64BIT; 83 83 if (RT_SUCCESS(DISInstr(&cpu, pInstr, 0, &cb, szOutput))) 84 printf( szOutput);84 printf("%s", szOutput); 85 85 else 86 86 {
Note:
See TracChangeset
for help on using the changeset viewer.