1. 03 May, 2017 2 commits
  2. 02 May, 2017 6 commits
  3. 01 May, 2017 26 commits
  4. 30 Apr, 2017 5 commits
  5. 29 Apr, 2017 1 commit
    • Marcel Raad's avatar
      curl_rtmp: fix missing-variable-declarations warnings · 65c6caac
      Marcel Raad authored
      clang complains:
      
      curl_rtmp.c:61:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmp' [-Werror,-Wmissing-variable-declarations]
      curl_rtmp.c:81:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmpt' [-Werror,-Wmissing-variable-declarations]
      curl_rtmp.c:101:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmpe' [-Werror,-Wmissing-variable-declarations]
      curl_rtmp.c:121:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmpte' [-Werror,-Wmissing-variable-declarations]
      curl_rtmp.c:141:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmps' [-Werror,-Wmissing-variable-declarations]
      curl_rtmp.c:161:27: error: no previous extern declaration for non-static variable 'Curl_handler_rtmpts' [-Werror,-Wmissing-variable-declarations]
      
      Fix this by including the header file.
      65c6caac