1. 07 May, 2020 29 commits
  2. 07 Apr, 2020 4 commits
  3. 30 Jan, 2020 4 commits
  4. 25 Jan, 2020 2 commits
  5. 09 Jan, 2020 1 commit
    • 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