VirtualBox

Changeset 48959 in vbox for trunk/src/bldprogs


Ignore:
Timestamp:
Oct 7, 2013 10:10:40 PM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
89659
Message:

bldprogs: Whitespace and svn:keywords cleanups by scm.

Location:
trunk/src/bldprogs
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bldprogs/bin2c.c

    • Property svn:keywords changed from Id to Id Revision
  • trunk/src/bldprogs/filesplitter.cpp

    r42414 r48959  
    4040/**
    4141 * Calculates the line number for a file position.
    42  * 
     42 *
    4343 * @returns Line number.
    4444 * @param   pcszContent         The file content.
     
    4848{
    4949    unsigned long cLine = 0;
    50     while (   *pcszContent 
     50    while (   *pcszContent
    5151           && (uintptr_t)pcszContent < (uintptr_t)pcszPos)
    5252    {
     
    6363
    6464/**
    65  * Writes an error message. 
    66  * 
     65 * Writes an error message.
     66 *
    6767 * @returns RTEXITCODE_FAILURE.
    6868 * @param   pcszFormat          Error message.
     
    8383
    8484/**
    85  * Opens the makefile list for writing. 
    86  * 
     85 * Opens the makefile list for writing.
     86 *
    8787 * @returns Exit code.
    8888 * @param   pcszPath            The path to the file.
     
    110110
    111111/**
    112  * Adds the given file to the makefile list. 
    113  * 
     112 * Adds the given file to the makefile list.
     113 *
    114114 * @returns Exit code.
    115115 * @param   pFile               The file stream of the makefile list.
     
    132132
    133133/**
    134  * Closes the makefile list. 
    135  * 
     134 * Closes the makefile list.
     135 *
    136136 * @returns Exit code derived from @a rc.
    137137 * @param   pFile               The file stream of the makefile list.
     
    148148
    149149/**
    150  * Reads in a file. 
    151  * 
     150 * Reads in a file.
     151 *
    152152 * @returns Exit code.
    153153 * @param   pcszFile            The path to the file.
     
    199199
    200200/**
    201  * Checks whether the sub-file already exists and has the exact 
    202  * same content. 
    203  * 
     201 * Checks whether the sub-file already exists and has the exact
     202 * same content.
     203 *
    204204 * @returns @c true if the existing file matches exactly, otherwise @c false.
    205205 * @param   pcszFilename    The path to the file.
     
    209209static bool compareSubFile(const char *pcszFilename, const char *pcszSubContent, size_t cchSubContent)
    210210{
    211     struct stat     FileStat;             
     211    struct stat     FileStat;
    212212    if (stat(pcszFilename, &FileStat))
    213213        return false;
     
    230230
    231231/**
    232  * Writes out a sub-file. 
    233  * 
     232 * Writes out a sub-file.
     233 *
    234234 * @returns exit code.
    235235 * @param   pcszFilename    The path to the sub-file.
     
    258258/**
    259259 * Does the actual file splitting.
    260  * 
     260 *
    261261 * @returns exit code.
    262262 * @param   pcszOutDir      Path to the output directory.
    263  * @param   pcszContent     The content to split up. 
     263 * @param   pcszContent     The content to split up.
    264264 * @param   pFileList       The file stream of the makefile list.  Can be NULL.
    265265 */
     
    292292        const char *pcszEndQuote = (const char *)memchr(pcszStartFilename, '\"', pcszLineAfterBegin - pcszStartFilename);
    293293        if (!pcszEndQuote)
    294             return printErr("Can't parse filename after begin-file marker (line %lu).\n", 
     294            return printErr("Can't parse filename after begin-file marker (line %lu).\n",
    295295                            lineNumber(pcszContent, s_szBeginMarker));
    296296
     
    298298        const char *pcszEnd = strstr(pcszLineAfterBegin, s_szEndMarker);
    299299        if (!pcszEnd)
    300             return printErr("No matching end-line marker for begin-file marker found (line %lu).\n", 
     300            return printErr("No matching end-line marker for begin-file marker found (line %lu).\n",
    301301                            lineNumber(pcszContent, s_szBeginMarker));
    302302
     
    329329    } while (rc == 0 && pcszSearch);
    330330
    331     printf("filesplitter: Out of %lu files: %lu rewritten, %lu unchanged. (%s)\n", 
     331    printf("filesplitter: Out of %lu files: %lu rewritten, %lu unchanged. (%s)\n",
    332332           cFilesWritten + cFilesUnchanged, cFilesWritten, cFilesUnchanged, pcszOutDir);
    333333    return rc;
  • trunk/src/bldprogs/scmstream.cpp

    r41217 r48959  
    13591359}
    13601360
    1361 
    1362 
  • trunk/src/bldprogs/scmsubversion.cpp

    r41966 r48959  
    10601060}
    10611061
    1062 
    1063 
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