From f31f563343fdd2501cd39d291867fb26c26d10d1 Mon Sep 17 00:00:00 2001 From: Aleksandr Kutuzov Date: Fri, 6 Sep 2024 13:05:04 +0100 Subject: [PATCH] Format Sources --- applications/debug/rpc_debug_app/rpc_debug_app.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/applications/debug/rpc_debug_app/rpc_debug_app.c b/applications/debug/rpc_debug_app/rpc_debug_app.c index e017f50638ef..6367cc7b3221 100644 --- a/applications/debug/rpc_debug_app/rpc_debug_app.c +++ b/applications/debug/rpc_debug_app/rpc_debug_app.c @@ -60,7 +60,10 @@ static void rpc_debug_app_rpc_command_callback(const RpcAppSystemEvent* event, v furi_assert(event->data.type == RpcAppSystemEventDataTypeBytes); rpc_debug_app_format_hex( - event->data.bytes.ptr, event->data.bytes.size, app->text_store, sizeof(app->text_store)); + event->data.bytes.ptr, + event->data.bytes.size, + app->text_store, + sizeof(app->text_store)); view_dispatcher_send_custom_event( app->view_dispatcher, RpcDebugAppCustomEventRpcDataExchange);