From 0061deb8b0670d4747db4bc95ac1171d4b9c934b Mon Sep 17 00:00:00 2001
From: Abdelrahman <said.abdelrahman89@gmail.com>
Date: Sat, 25 Jan 2025 23:18:10 +0000
Subject: [PATCH] Reformat

---
 src/event_system.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/event_system.c b/src/event_system.c
index dbd9618..42d971e 100644
--- a/src/event_system.c
+++ b/src/event_system.c
@@ -329,7 +329,7 @@ internal void copy_event_data(const ESInternal *src, ESInternal *dst) {
     ev_dst->count      = ev_src->count;
     ev_dst->free_count = ev_src->free_count;
 
-    memcpy((void *)(ev_dst->free), (const void *)(ev_src->free), FREE_CB_ARR_SIZE(ev_src->capacity));
+    memcpy((void *)(ev_dst->free),      (const void *)(ev_src->free),      FREE_CB_ARR_SIZE(ev_src->capacity));
     memcpy((void *)(ev_dst->callbacks), (const void *)(ev_src->callbacks), CB_ARR_SIZE(ev_src->capacity));
   }
 }