Skip to content

Commit 57c40bd

Browse files
author
Jake Champion
committed
formatting fixes
1 parent a4a7cd3 commit 57c40bd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,8 @@ bool ConfigStore::constructor(JSContext *cx, unsigned argc, JS::Value *vp) {
9797
JS::RootedObject config_store(cx, JS_NewObjectForConstructor(cx, &class_, args));
9898
ConfigStoreHandle dict_handle = {INVALID_HANDLE};
9999
// TODO: Throw JS Error if the requested store does not exist
100-
auto status = convert_to_fastly_status(xqd_config_store_open(name.data(), name_len, &dict_handle));
100+
auto status =
101+
convert_to_fastly_status(xqd_config_store_open(name.data(), name_len, &dict_handle));
101102
if (status == FastlyStatus::BadF) {
102103
JS_ReportErrorNumberASCII(cx, GetErrorMessage, nullptr, JSMSG_CONFIG_STORE_DOES_NOT_EXIST,
103104
name.data());

0 commit comments

Comments
 (0)