VirtualBox

Changeset 50694 in vbox for trunk/src/VBox/VMM


Ignore:
Timestamp:
Mar 5, 2014 10:03:03 AM (11 years ago)
Author:
vboxsync
Message:

a few unimportant format string fixes

Location:
trunk/src/VBox/VMM/testcase
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/testcase/tstGlobalConfig.cpp

    r44529 r50694  
    55
    66/*
    7  * Copyright (C) 2007-2012 Oracle Corporation
     7 * Copyright (C) 2007-2014 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    7070    if (cch >= sizeof(Req.szName))
    7171    {
    72         RTPrintf("syntax error: the name is too long. (max %zu chars)\n", argv[1], sizeof(Req.szName) - 1);
     72        RTPrintf("syntax error: the name '%s' is too long. (max %zu chars)\n", argv[1], sizeof(Req.szName) - 1);
    7373        return 1;
    7474    }
  • trunk/src/VBox/VMM/testcase/tstInstrEmul.cpp

    r44528 r50694  
    55
    66/*
    7  * Copyright (C) 2006-2011 Oracle Corporation
     7 * Copyright (C) 2006-2014 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    5151        ||  val != UINT64_C(0x200000001))
    5252    {
    53         RTPrintf("tstInstrEmul: FAILURE - Lock cmpxchg8b failed the equal case! (val=%x%x)\n", val);
     53        RTPrintf("tstInstrEmul: FAILURE - Lock cmpxchg8b failed the equal case! (val=%RX64)\n", val);
    5454        return 1;
    5555    }
     
    6060        ||  edx != 0x1)
    6161    {
    62         RTPrintf("tstInstrEmul: FAILURE - Lock cmpxchg8b failed the non-equal case! (val=%x%x)\n", val);
     62        RTPrintf("tstInstrEmul: FAILURE - Lock cmpxchg8b failed the non-equal case! (val=%RX64)\n", val);
    6363        return 1;
    6464    }
     
    7474        ||  val != UINT64_C(0x200000001))
    7575    {
    76         RTPrintf("tstInstrEmul: FAILURE - Cmpxchg8b failed the equal case! (val=%x%x)\n", val);
     76        RTPrintf("tstInstrEmul: FAILURE - Cmpxchg8b failed the equal case! (val=%RX64)\n", val);
    7777        return 1;
    7878    }
     
    8383        ||  edx != 0x1)
    8484    {
    85         RTPrintf("tstInstrEmul: FAILURE - Cmpxchg8b failed the non-equal case! (val=%x%x)\n", val);
     85        RTPrintf("tstInstrEmul: FAILURE - Cmpxchg8b failed the non-equal case! (val=%RX64)\n", val);
    8686        return 1;
    8787    }
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette