Skip to content

Commit 66e16c5

Browse files
Jake ChampionJakeChampion
authored andcommitted
update formatting
1 parent ad3ee98 commit 66e16c5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

c-dependencies/js-compute-runtime/builtins/object-store.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,8 @@ bool get(JSContext *cx, unsigned argc, JS::Value *vp) {
164164
return ReturnPromiseRejectedWithPendingError(cx, args);
165165
}
166166
BodyHandle body_handle = {INVALID_HANDLE};
167-
int status = fastly_object_store_get(object_store_handle(self), key_chars.value(), key_len,
168-
&body_handle);
167+
int status =
168+
fastly_object_store_get(object_store_handle(self), key_chars.value(), key_len, &body_handle);
169169
if (!HANDLE_RESULT(cx, status)) {
170170
return false;
171171
}

c-dependencies/js-compute-runtime/xqd.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -303,8 +303,8 @@ WASM_IMPORT("fastly_object_store", "open")
303303
int fastly_object_store_open(const char *name, size_t name_len,
304304
ObjectStoreHandle *object_store_handle_out);
305305
WASM_IMPORT("fastly_object_store", "lookup")
306-
int fastly_object_store_get(ObjectStoreHandle object_store_handle, const char *key,
307-
size_t key_len, BodyHandle *opt_body_handle_out);
306+
int fastly_object_store_get(ObjectStoreHandle object_store_handle, const char *key, size_t key_len,
307+
BodyHandle *opt_body_handle_out);
308308
WASM_IMPORT("fastly_object_store", "insert")
309309
int fastly_object_store_insert(ObjectStoreHandle object_store_handle, const char *key,
310310
size_t key_len, BodyHandle body_handle);

0 commit comments

Comments
 (0)