Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: grrtrr/aws-c-io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: grrtrr/aws-c-io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: fix_missing_include
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Aug 6, 2022

  1. posix/socket: fix missing include

    This adds a missing include which is included in other source files,
    but not in this one. Without it, a compilation error results:
    ```console
    external/aws-c-io/source/posix/socket.c: In function 's_update_local_endpoint':
    external/aws-c-io/source/posix/socket.c:347:74: error: expected ')' before 'PRIu32'
             snprintf(tmp_endpoint.address, sizeof(tmp_endpoint.address), "%" PRIu32, s->svm_cid);
                                                                              ^~~~~~
    external/aws-c-io/source/posix/socket.c:347:71: warning: spurious trailing '%' in format [-Wformat=]
             snprintf(tmp_endpoint.address, sizeof(tmp_endpoint.address), "%" PRIu32, s->svm_cid);
    ```
    grrtrr committed Aug 6, 2022
    Configuration menu
    Copy the full SHA
    0f4e2d8 View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2022

  1. Configuration menu
    Copy the full SHA
    6fd858d View commit details
    Browse the repository at this point in the history
Loading