VirtualBox

Changeset 102345 in vbox for trunk/src/libs/xpcom18a4/java


Ignore:
Timestamp:
Nov 27, 2023 6:48:07 PM (16 months ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
160481
Message:

libs/xpcom: Replace remaining APIs from prprf.h with IPRT equivalents, bugref:10545

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/libs/xpcom18a4/java/src/nsJavaWrapper.cpp

    r102014 r102345  
    4949#include "nsProxyRelease.h"
    5050
     51#include <iprt/string.h>
     52
    5153static nsID nullID =  {0, 0, 0, {0, 0, 0, 0, 0, 0, 0, 0}};
    5254
     
    15031505                    nsXPIDLCString emsg;
    15041506                    ex->GetMessage(getter_Copies(emsg));
    1505                     PR_snprintf(msg, msgSize, "%s",
    1506                                 emsg.get());
     1507                    RTStrPrintf2(msg, msgSize, "%s",
     1508                                 emsg.get());
    15071509                    gotMsg = true;
    15081510                }
     
    15161518        if (strncmp(pMsg->pszMsgFull, "Unknown", 7) != 0)
    15171519        {
    1518             PR_snprintf(msg, msgSize, "%s (%s)",
    1519                         pMsg->pszMsgFull, pMsg->pszDefine);
     1520            RTStrPrintf2(msg, msgSize, "%s (%s)",
     1521                         pMsg->pszMsgFull, pMsg->pszDefine);
    15201522            gotMsg = true;
    15211523        }
     
    15241526    if (!gotMsg)
    15251527    {
    1526         PR_snprintf(msg, msgSize, "Error 0x%x in module 0x%x",
    1527                     NS_ERROR_GET_CODE(r), NS_ERROR_GET_MODULE(r));
     1528        RTStrPrintf2(msg, msgSize, "Error 0x%x in module 0x%x",
     1529                     NS_ERROR_GET_CODE(r), NS_ERROR_GET_MODULE(r));
    15281530    }
    15291531}
Note: See TracChangeset for help on using the changeset viewer.

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