VirtualBox

Ignore:
Timestamp:
Jan 4, 2015 12:58:40 AM (10 years ago)
Author:
vboxsync
Message:

shader.c: Fixed -Wshadow warning in shader_trace_init().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Graphics/shaderlib/shader.c

    r53201 r53724  
    12491249            {
    12501250                const char *end = comment + comment_size;
    1251                 const char *ptr = comment + 4;
    1252                 const char *line = ptr;
     1251                const char *cur = comment + 4;
     1252                const char *line = cur;
    12531253
    12541254                TRACE("// TEXT\n");
    1255                 while (ptr != end)
     1255                while (cur != end)
    12561256                {
    1257                     if (*ptr == '\n')
     1257                    if (*cur == '\n')
    12581258                    {
    1259                         UINT len = ptr - line;
    1260                         if (len && *(ptr - 1) == '\r') --len;
     1259                        UINT len = cur - line;
     1260                        if (len && *(cur - 1) == '\r') --len;
    12611261                        TRACE("// %s\n", debugstr_an(line, len));
    1262                         line = ++ptr;
     1262                        line = ++cur;
    12631263                    }
    1264                     else ++ptr;
     1264                    else ++cur;
    12651265                }
    1266                 if (line != ptr) TRACE("// %s\n", debugstr_an(line, ptr - line));
     1266                if (line != cur) TRACE("// %s\n", debugstr_an(line, cur - line));
    12671267            }
    12681268            else TRACE("// %s\n", debugstr_an(comment, comment_size));
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