1. 07 May, 2020 28 commits
  2. 07 Apr, 2020 4 commits
  3. 30 Jan, 2020 4 commits
  4. 25 Jan, 2020 2 commits
  5. 09 Jan, 2020 2 commits
    • Ulrich Sibiller's avatar
      compext/Clean.c: fix shadow warnings / scope · 87074622
      Ulrich Sibiller authored
      Clean.c: In function ‘CleanZImage’:
      Clean.c:141:23: warning: declaration of ‘j’ shadows a previous local [-Wshadow=local]
             register int i, j;
                             ^
      Clean.c:88:16: note: shadowed declaration is here
         unsigned int j;
                      ^
      Clean.c: In function ‘CopyAndCleanImage’:
      Clean.c:239:22: warning: declaration of ‘i’ shadows a previous local [-Wshadow=compatible-local]
               register int i;
                            ^
      Clean.c:192:16: note: shadowed declaration is here
         register int i;
                      ^
      Clean.c:324:13: warning: declaration of ‘i’ shadows a previous local [-Wshadow=compatible-local]
               int i;
                   ^
      Clean.c:192:16: note: shadowed declaration is here
         register int i;
                      ^
      87074622
    • Ulrich Sibiller's avatar
      os: Fix -Wshadow errors · a94e8258
      Ulrich Sibiller authored
        commit 08d0481e299c28b64a0db9bb0782ba2b551028fd
        Author: Keith Packard <keithp@keithp.com>
        Date:   Sun Dec 15 01:12:22 2013 -0800
      
          os: Fix -Wshadow errors
      
          Rename variables to avoid shadowing globals
      Signed-off-by: 's avatarKeith Packard <keithp@keithp.com>
      Reviewed-by: 's avatarEric Anholt <eric@anholt.net>
      a94e8258