Skip to content

Commit fb328bf

Browse files
committed
fmt
1 parent 0788df9 commit fb328bf

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

runtime/fastly/host-api/host_api.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4603,7 +4603,8 @@ KVStorePendingLookup::wait() {
46034603
res.emplace(std::nullopt);
46044604
} else {
46054605
if (metadata_nwritten > 0) {
4606-
metadata_buf = reinterpret_cast<uint8_t *>(cabi_realloc(metadata_buf, HOSTCALL_BUFFER_LEN, 1, metadata_nwritten));
4606+
metadata_buf = reinterpret_cast<uint8_t *>(
4607+
cabi_realloc(metadata_buf, HOSTCALL_BUFFER_LEN, 1, metadata_nwritten));
46074608
res.emplace(std::make_tuple(body, make_host_bytes(metadata_buf, metadata_nwritten), gen_out));
46084609
} else {
46094610
cabi_free(metadata_buf);

runtime/fastly/host-api/host_api_fastly.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ struct TlsVersion {
376376
uint8_t value = 0;
377377

378378
explicit TlsVersion(uint8_t raw);
379-
explicit TlsVersion(){};
379+
explicit TlsVersion() {};
380380

381381
uint8_t get_version() const;
382382
double get_version_number() const;

0 commit comments

Comments
 (0)