Skip to content

Commit 6ee59eb

Browse files
committed
fix typo
1 parent 39e3f7e commit 6ee59eb

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/transports/sentry_transport_winhttp.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ sentry__winhttp_bgworker_state_new(void)
4545
}
4646

4747
static void
48-
sentry__winhttp_sesssion_start(void *_state)
48+
sentry__winhttp_session_start(void *_state)
4949
{
5050
winhttp_bgworker_state_t *state = _state;
5151
if (state->proxy) {
@@ -148,7 +148,7 @@ sentry__winhttp_transport_start(
148148
}
149149

150150
#ifndef SENTRY_PLATFORM_XBOX
151-
sentry__winhttp_sesssion_start(state);
151+
sentry__winhttp_session_start(state);
152152

153153
if (!state->session) {
154154
SENTRY_WARN("`WinHttpOpen` failed");
@@ -207,7 +207,7 @@ sentry__winhttp_send_task(void *_envelope, void *_state)
207207
SENTRY_DEBUG(
208208
"ensuring xbox network is initialized for WinHttp transport");
209209
sentry__transport_ensure_network_initialized();
210-
sentry__winhttp_sesssion_start(state);
210+
sentry__winhttp_session_start(state);
211211

212212
if (!state->session) {
213213
SENTRY_WARN("`WinHttpOpen` failed");

0 commit comments

Comments
 (0)