Commit e2747ebb authored by Yang Tse's avatar Yang Tse
Browse files

compiler warning: fix

Fix missing semicolon
parent 41ebda02
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1269,7 +1269,7 @@ CURLcode Curl_output_ntlm(struct connectdata *conn,

    /* convert domain, user, and host to ASCII but leave the rest as-is */
    res = Curl_convert_to_network(conn->data, (char *)&ntlmbuf[domoff],
                                  size-domoff)
                                  size-domoff);
    if(res)
      return CURLE_CONV_FAILED;