diff options
| author | Bug Magnet <marco.nikic@mullvad.net> | 2025-06-03 10:17:25 +0200 |
|---|---|---|
| committer | Bug Magnet <marco.nikic@mullvad.net> | 2025-06-04 11:33:17 +0200 |
| commit | e3ccff9b8313e5a13ce526c5b9cb531bd82f623c (patch) | |
| tree | cc871d6c0e360d910ebda7c6f05b1d71ad5d1216 /ios/MullvadRustRuntime/include | |
| parent | e19578a7eaea23502ef01559ae0a74e21a27383a (diff) | |
| download | mullvadvpn-e3ccff9b8313e5a13ce526c5b9cb531bd82f623c.tar.xz mullvadvpn-e3ccff9b8313e5a13ce526c5b9cb531bd82f623c.zip | |
Remove unnecessary casts statements
Diffstat (limited to 'ios/MullvadRustRuntime/include')
| -rw-r--r-- | ios/MullvadRustRuntime/include/mullvad_rust_runtime.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ios/MullvadRustRuntime/include/mullvad_rust_runtime.h b/ios/MullvadRustRuntime/include/mullvad_rust_runtime.h index d0021443c3..d4c0bf334f 100644 --- a/ios/MullvadRustRuntime/include/mullvad_rust_runtime.h +++ b/ios/MullvadRustRuntime/include/mullvad_rust_runtime.h @@ -89,10 +89,10 @@ typedef struct LateStringDeallocator { typedef struct SwiftMullvadApiResponse { uint8_t *body; uintptr_t body_size; - uint8_t *etag; + char *etag; uint16_t status_code; - uint8_t *error_description; - uint8_t *server_response_code; + char *error_description; + char *server_response_code; bool success; } SwiftMullvadApiResponse; |
