1. 03 Aug, 2017 8 commits
  2. 02 Aug, 2017 5 commits
  3. 01 Aug, 2017 5 commits
  4. 31 Jul, 2017 3 commits
  5. 30 Jul, 2017 1 commit
  6. 29 Jul, 2017 5 commits
  7. 28 Jul, 2017 4 commits
  8. 27 Jul, 2017 1 commit
  9. 26 Jul, 2017 2 commits
  10. 20 Jul, 2017 2 commits
  11. 18 Jul, 2017 1 commit
  12. 17 Jul, 2017 1 commit
  13. 16 Jul, 2017 2 commits
    • Marcel Raad's avatar
      rtspd: fix GCC warning after MSVC warning fix · 38faf041
      Marcel Raad authored
      Older GCC warns:
      /tests/server/rtspd.c:1194:10: warning: missing braces around
      initializer [-Wmissing-braces]
      
      Fix this by using memset instead of an initializer.
      38faf041
    • Marcel Raad's avatar
      libtest: fix MSVC warning C4706 · fb3b0f25
      Marcel Raad authored
      With warning level 4, MSVC warns about assignments within conditional
      expressions. Change the while loop to a do-while loop to fix this. This
      change is also consistent with CODE_STYLE.md.
      fb3b0f25