From a40703c2bd5ea97bc376c2024cffec8b37d6f13d Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Sat, 10 Jan 2026 01:20:39 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- src/bun.js/bindings/JSInspectorProfiler.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/bun.js/bindings/JSInspectorProfiler.cpp b/src/bun.js/bindings/JSInspectorProfiler.cpp index 7d46752854..532451344d 100644 --- a/src/bun.js/bindings/JSInspectorProfiler.cpp +++ b/src/bun.js/bindings/JSInspectorProfiler.cpp @@ -12,14 +12,14 @@ extern "C" void Bun__setCPUSamplingInterval(int intervalMicroseconds); extern "C" bool Bun__isCPUProfilerRunning(); JSC_DECLARE_HOST_FUNCTION(jsFunction_startCPUProfiler); -JSC_DEFINE_HOST_FUNCTION(jsFunction_startCPUProfiler, (JSGlobalObject* globalObject, CallFrame*)) +JSC_DEFINE_HOST_FUNCTION(jsFunction_startCPUProfiler, (JSGlobalObject * globalObject, CallFrame*)) { Bun__startCPUProfiler(&globalObject->vm()); return JSValue::encode(jsUndefined()); } JSC_DECLARE_HOST_FUNCTION(jsFunction_stopCPUProfiler); -JSC_DEFINE_HOST_FUNCTION(jsFunction_stopCPUProfiler, (JSGlobalObject* globalObject, CallFrame*)) +JSC_DEFINE_HOST_FUNCTION(jsFunction_stopCPUProfiler, (JSGlobalObject * globalObject, CallFrame*)) { BunString result = Bun__stopCPUProfilerAndGetJSON(&globalObject->vm()); @@ -34,7 +34,7 @@ JSC_DEFINE_HOST_FUNCTION(jsFunction_stopCPUProfiler, (JSGlobalObject* globalObje } JSC_DECLARE_HOST_FUNCTION(jsFunction_setCPUSamplingInterval); -JSC_DEFINE_HOST_FUNCTION(jsFunction_setCPUSamplingInterval, (JSGlobalObject* globalObject, CallFrame* callFrame)) +JSC_DEFINE_HOST_FUNCTION(jsFunction_setCPUSamplingInterval, (JSGlobalObject * globalObject, CallFrame* callFrame)) { auto& vm = globalObject->vm(); auto scope = DECLARE_THROW_SCOPE(vm);