VirtualBox

Ignore:
Timestamp:
Aug 2, 2011 6:50:37 PM (14 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
73282
Message:

comment typo.

File:
1 edited

Legend:

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

    r33540 r38285  
    355355*******************************************************************************/
    356356
    357 static xmlNodePtr rtS3FindNode(xmlNodePtr pNode, const char* pszName)
     357static xmlNodePtr rtS3FindNode(xmlNodePtr pNode, const char *pszName)
    358358{
    359359    pNode = pNode->xmlChildrenNode;
    360360    while (pNode != NULL)
    361361    {
    362         /* Check this level */
    363         if ((!xmlStrcmp(pNode->name, (const xmlChar *)pszName)))
     362        /* Check this level. */
     363        if (!xmlStrcmp(pNode->name, (const xmlChar *)pszName))
    364364            return pNode;
    365         /* Recursively check the childs of this node */
     365
     366        /* Recursively check the children of this node. */
    366367        xmlNodePtr pChildNode = rtS3FindNode(pNode, pszName);
    367368        if (pChildNode != NULL)
    368369            return pChildNode;
    369         /* Next node*/
     370
     371        /* Next node. */
    370372        pNode = pNode->next;
    371373    }
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