[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [PATCH 1/7] x86emul/test: remove extraneous commas in debug messages
Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> --- tools/tests/x86_emulator/test_x86_emulator.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/tests/x86_emulator/test_x86_emulator.c b/tools/tests/x86_emulator/test_x86_emulator.c index 924fd36f18..e86369ffe7 100644 --- a/tools/tests/x86_emulator/test_x86_emulator.c +++ b/tools/tests/x86_emulator/test_x86_emulator.c @@ -42,7 +42,7 @@ static int read( struct x86_emulate_ctxt *ctxt) { if ( verbose ) - printf("** %s(%u, %p,, %u,)\n", __func__, seg, (void *)offset, bytes); + printf("** %s(%u, %p, %u)\n", __func__, seg, (void *)offset, bytes); switch ( seg ) { @@ -97,7 +97,7 @@ static int fetch( struct x86_emulate_ctxt *ctxt) { if ( verbose ) - printf("** %s(%u, %p,, %u,)\n", __func__, seg, (void *)offset, bytes); + printf("** %s(%u, %p, %u)\n", __func__, seg, (void *)offset, bytes); memcpy(p_data, (void *)offset, bytes); return X86EMUL_OKAY; @@ -111,7 +111,7 @@ static int write( struct x86_emulate_ctxt *ctxt) { if ( verbose ) - printf("** %s(%u, %p,, %u,)\n", __func__, seg, (void *)offset, bytes); + printf("** %s(%u, %p, %u)\n", __func__, seg, (void *)offset, bytes); if ( !is_x86_user_segment(seg) ) return X86EMUL_UNHANDLEABLE; @@ -128,7 +128,7 @@ static int cmpxchg( struct x86_emulate_ctxt *ctxt) { if ( verbose ) - printf("** %s(%u, %p,, %u,)\n", __func__, seg, (void *)offset, bytes); + printf("** %s(%u, %p, %u)\n", __func__, seg, (void *)offset, bytes); if ( !is_x86_user_segment(seg) ) return X86EMUL_UNHANDLEABLE; -- 2.11.0 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |