VirtualBox

儲存庫 vbox 的更動 38733


忽略:
時間撮記:
2011-9-13 下午01:17:13 (13 年 以前)
作者:
vboxsync
訊息:

%S -> %s and some other minor cleanups.

位置:
trunk
檔案:
修改 9 筆資料

圖例:

未更動
新增
刪除
  • trunk/Config.kmk

    r38691 r38733  
    25342534  ifeq ($(origin VBOX_LINUX_INCS),undefined)
    25352535   export VBOX_LINUX_INCS := $(VBOX_LINUX_SRC)/include
    2536    # XXX hack alert! support splitted Linux kernels (make O=<build directory>)
     2536   # XXX hack alert! support split Linux kernels (make O=<build directory>)
    25372537   # XXX put this crap elsewhere
    25382538   kernelpath := $(shell $(SED_EXT) -ne 's+^KERNELSRC.*= *\(.*\)+\1+p' $(VBOX_LINUX_SRC)/Makefile)
  • trunk/src/VBox/Additions/common/VBoxControl/VBoxControl.cpp

    r38637 r38733  
    10121012    else if (RT_SUCCESS(rc))
    10131013    {
    1014         RTPrintf("Value: %S\n", pszValue);
     1014        RTPrintf("Value: %s\n", pszValue);
    10151015        if (fVerbose)
    10161016        {
    10171017            RTPrintf("Timestamp: %lld ns\n", u64Timestamp);
    1018             RTPrintf("Flags: %S\n", pszFlags);
     1018            RTPrintf("Flags: %s\n", pszFlags);
    10191019        }
    10201020    }
  • trunk/src/VBox/Devices/PC/BIOS-new/makefile

    r38705 r38733  
    1414QUOTE="
    1515!endif
    16 CFLAGS = -q -0 -wx -zu -s -oas -d1 -ms
     16CFLAGS = -q -0 -wx -zu -s -oas -d1+ -ms
    1717DEFS   = -DVBOX -DVBOX_LANBOOT_SEG=0xE200 -DVBOX_VERSION_STRING=$(QUOTE)0.9$(QUOTE) &
    1818 -DVBOX_WITH_SCSI
  • trunk/src/VBox/Disassembler/DisasmTables.cpp

    r36766 r38733  
    11/** @file
    2  *
    3  * VBox disassembler:
    4  * Tables
     2 * VBox disassembler - Tables.
    53 */
    64
    75/*
    8  * Copyright (C) 2006-2007 Oracle Corporation
     6 * Copyright (C) 2006-2011 Oracle Corporation
    97 *
    108 * This file is part of VirtualBox Open Source Edition (OSE), as
  • trunk/src/VBox/Disassembler/DisasmTablesX64.cpp

    r28800 r38733  
    11/** @file
    2  *
    3  * VBox disassembler:
    4  * Tables for x64 (long mode)
     2 * VBox disassembler - Tables for AMD64 (long mode).
    53 */
    64
    75/*
    8  * Copyright (C) 2006-2007 Oracle Corporation
     6 * Copyright (C) 2006-2011 Oracle Corporation
    97 *
    108 * This file is part of VirtualBox Open Source Edition (OSE), as
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageInfo.cpp

    r38555 r38733  
    17251725
    17261726                        if (details == VMINFO_MACHINEREADABLE)
    1727                             RTPrintf("USBRemoteUUID%zu=\"%S\"\n"
     1727                            RTPrintf("USBRemoteUUID%zu=\"%s\"\n"
    17281728                                     "USBRemoteVendorId%zu=\"%#06x\"\n"
    17291729                                     "USBRemoteProductId%zu=\"%#06x\"\n"
     
    17341734                                     index + 1, bcdRevision >> 8, bcdRevision & 0xff);
    17351735                        else
    1736                             RTPrintf("UUID:               %S\n"
     1736                            RTPrintf("UUID:               %s\n"
    17371737                                     "VendorId:           %#06x (%04X)\n"
    17381738                                     "ProductId:          %#06x (%04X)\n"
     
    18141814
    18151815                        if (details == VMINFO_MACHINEREADABLE)
    1816                             RTPrintf("USBAttachedUUID%zu=\"%S\"\n"
     1816                            RTPrintf("USBAttachedUUID%zu=\"%s\"\n"
    18171817                                     "USBAttachedVendorId%zu=\"%#06x\"\n"
    18181818                                     "USBAttachedProductId%zu=\"%#06x\"\n"
     
    18231823                                     index + 1, bcdRevision >> 8, bcdRevision & 0xff);
    18241824                        else
    1825                             RTPrintf("UUID:               %S\n"
     1825                            RTPrintf("UUID:               %s\n"
    18261826                                     "VendorId:           %#06x (%04X)\n"
    18271827                                     "ProductId:          %#06x (%04X)\n"
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageList.cpp

    r37244 r38733  
    700700                    CHECK_ERROR_RET(dev, COMGETTER(Revision)(&bcdRevision), 1);
    701701
    702                     RTPrintf("UUID:               %S\n"
     702                    RTPrintf("UUID:               %s\n"
    703703                             "VendorId:           %#06x (%04X)\n"
    704704                             "ProductId:          %#06x (%04X)\n"
  • trunk/src/VBox/HostServices/SharedFolders/service.cpp

    r35482 r38733  
    876876            Log(("SharedFolders host service: svcCall: SHFL_FN_MAP_FOLDER\n"));
    877877            if (BIT_FLAG(pClient->fu32Flags, SHFL_CF_UTF8))
    878                 Log(("SharedFolders host service: request to map folder '%S'\n",
     878                Log(("SharedFolders host service: request to map folder '%s'\n",
    879879                     ((PSHFLSTRING)paParms[0].u.pointer.addr)->String.utf8));
    880880            else
    881                 Log(("SharedFolders host service: request to map folder '%lS'\n",
     881                Log(("SharedFolders host service: request to map folder '%ls'\n",
    882882                     ((PSHFLSTRING)paParms[0].u.pointer.addr)->String.ucs2));
    883883
  • trunk/src/VBox/Runtime/testcase/tstDir-2.cpp

    r38651 r38733  
    6767                        break;
    6868                }
    69                 RTPrintf(" %#18llx  %3d %S\n", (uint64_t)DirEntry.INodeId,
     69                RTPrintf(" %#18llx  %3d %s\n", (uint64_t)DirEntry.INodeId,
    7070                         DirEntry.cbName, DirEntry.szName);
    7171            }
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

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