diff --git a/src/ripple/app/hook/impl/applyHook.cpp b/src/ripple/app/hook/impl/applyHook.cpp index 6002f300c..4b0956e9a 100644 --- a/src/ripple/app/hook/impl/applyHook.cpp +++ b/src/ripple/app/hook/impl/applyHook.cpp @@ -8108,7 +8108,8 @@ DEFINE_JS_FUNCTION(JSValue, float_sto_set, JSValue raw_sto) if (!sto.has_value()) returnJS(INVALID_ARGUMENT); - int64_t const out = __float_sto_set(hookCtx, applyCtx, j, sto->data(), sto->size()); + int64_t const out = + __float_sto_set(hookCtx, applyCtx, j, sto->data(), sto->size()); if (out < 0) returnJS(out);