VirtualBox

Changeset 27301 in vbox


Ignore:
Timestamp:
Mar 11, 2010 7:53:15 PM (15 years ago)
Author:
vboxsync
Message:

iprt/message.cpp: mixup in the generalization code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/common/misc/message.cpp

    r27128 r27301  
    5959                if (!pszEnd)
    6060                {
    61                     RTStrmPrintf(pDst, "%s: %s%s\n", pszPrefix, &g_szrtProcExePath[g_offrtProcName], psz);
     61                    RTStrmPrintf(pDst, "%s: %s%s\n", &g_szrtProcExePath[g_offrtProcName], pszPrefix, psz);
    6262                    break;
    6363                }
     
    6767                {
    6868                    *pszEnd = '\0';
    69                     RTStrmPrintf(pDst, "%s: %s%s\n", pszPrefix, &g_szrtProcExePath[g_offrtProcName], psz);
     69                    RTStrmPrintf(pDst, "%s: %s%s\n", &g_szrtProcExePath[g_offrtProcName], pszPrefix, psz);
    7070                }
    7171                psz = pszEnd + 1;
     
    7676        {
    7777            /* Simple fallback for handling out-of-memory conditions. */
    78             RTStrmPrintf(pDst, "%s: %s", pszPrefix, &g_szrtProcExePath[g_offrtProcName]);
     78            RTStrmPrintf(pDst, "%s: %s", &g_szrtProcExePath[g_offrtProcName], pszPrefix);
    7979            RTStrmPrintfV(pDst, pszFormat, va);
    8080            if (!strchr(pszFormat, '\n'))
     
    9999RTDECL(int)  RTMsgErrorV(const char *pszFormat, va_list va)
    100100{
    101     return rtMsgWorker(g_pStdErr, " error:", pszFormat, va);
     101    return rtMsgWorker(g_pStdErr, "error: ", pszFormat, va);
    102102}
    103103RT_EXPORT_SYMBOL(RTMsgErrorV);
     
    150150RTDECL(int)  RTMsgWarningV(const char *pszFormat, va_list va)
    151151{
    152     return rtMsgWorker(g_pStdErr, " warning:", pszFormat, va);
     152    return rtMsgWorker(g_pStdErr, "warning: ", pszFormat, va);
    153153}
    154154RT_EXPORT_SYMBOL(RTMsgWarningV);
     
    168168RTDECL(int)  RTMsgInfoV(const char *pszFormat, va_list va)
    169169{
    170     return rtMsgWorker(g_pStdOut, " info:", pszFormat, va);
     170    return rtMsgWorker(g_pStdOut, "info: ", pszFormat, va);
    171171}
    172172RT_EXPORT_SYMBOL(RTMsgInfoV);
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