Commit 0c7cb0c1 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

prevent warning from that picky MIPSpro compiler

parent 4816294f
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -95,15 +95,15 @@ char *curl_version(void)
{
  static char version[200];
  char *ptr;
  long num;
  strcpy(version, LIBCURL_NAME "/" LIBCURL_VERSION );
  ptr=strchr(version, '\0');

#ifdef USE_SSLEAY
  {
    long num;
    getssl_version(ptr, &num);
    ptr=strchr(version, '\0');
#else
  (void)num; /* no compiler warning please */
  }
#endif

#ifdef HAVE_KRB4