Browse Source

fix compiler warning

Yang Tse 14 years ago
parent
commit
2268657272
1 changed files with 2 additions and 2 deletions
  1. 2 2
      tests/server/rtspd.c

+ 2 - 2
tests/server/rtspd.c

@@ -957,13 +957,13 @@ static int send_doc(curl_socket_t sock, struct httprequest *req)
       return 0;
     }
     else {
-      error = getpart(&buffer, &count, "reply", partbuf, stream);
+      error = getpart(&ptr, &count, "reply", partbuf, stream);
       fclose(stream);
       if(error) {
         logmsg("getpart() failed with error: %d", error);
         return 0;
       }
-      ptr = (char *)buffer;
+      buffer = ptr;
     }
 
     if(got_exit_signal) {