Skip to content

Commit

Permalink
Not sure what the error is. Trying this
Browse files Browse the repository at this point in the history
  • Loading branch information
Skptak committed Aug 17, 2023
1 parent 38b5c6a commit c472b44
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ jobs:
path: ./
fail-on-incorrect-version: true


proof_ci:
if: ${{ github.event.pull_request }}
runs-on: cbmc_ubuntu-latest_64-core
Expand Down
5 changes: 2 additions & 3 deletions source/include/core_http_client_private.h
Original file line number Diff line number Diff line change
Expand Up @@ -249,10 +249,9 @@ extern "C" {
* @brief The state of the response message parsed after function
* #parseHttpResponse returns.
*/
typedef enum HTTPParsingState_t
typedef enum
{
HTTP_PARSING_NONE = 0, /**< The parser has not started reading any response.
*/
HTTP_PARSING_NONE = 0, /**< The parser hasn't read any response.*/
HTTP_PARSING_INCOMPLETE, /**< The parser found a partial reponse. */
HTTP_PARSING_COMPLETE /**< The parser found the entire response. */
} HTTPParsingState_t;
Expand Down

0 comments on commit c472b44

Please sign in to comment.