Commit 31f39120 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

curl_version: fixed Value stored to 'len' is never read

Fixed this (harmless) clang-analyzer warning. Also fixed the source
indentation level.
parent b9fb9c23
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -132,12 +132,15 @@ char *curl_version(void)
    else
      suff[0] = '\0';

    len = snprintf(ptr, left, " librtmp/%d.%d%s",
      RTMP_LIB_VERSION >> 16, (RTMP_LIB_VERSION >> 8) & 0xff, suff);
    snprintf(ptr, left, " librtmp/%d.%d%s",
             RTMP_LIB_VERSION >> 16, (RTMP_LIB_VERSION >> 8) & 0xff,
             suff);
/*
  If another lib version is added below this one, this code would
  also have to do:

    len = what snprintf() returned

    left -= len;
    ptr += len;
*/