Module: kamailio
Branch: master
Commit: 94dd64a5238b4bf60ca21e09e216c01166f4a93f
URL: 
https://github.com/kamailio/kamailio/commit/94dd64a5238b4bf60ca21e09e216c01166f4a93f

Author: Daniel-Constantin Mierla <mico...@gmail.com>
Committer: Daniel-Constantin Mierla <mico...@gmail.com>
Date: 2023-05-16T12:45:57+02:00

core: use unsigned long (j) for rpc core.shmmem

- GH #3450

---

Modified: src/core/core_cmd.c

---

Diff:  
https://github.com/kamailio/kamailio/commit/94dd64a5238b4bf60ca21e09e216c01166f4a93f.diff
Patch: 
https://github.com/kamailio/kamailio/commit/94dd64a5238b4bf60ca21e09e216c01166f4a93f.patch

---

diff --git a/src/core/core_cmd.c b/src/core/core_cmd.c
index 302309fc8b0..12f0cbf3fc2 100644
--- a/src/core/core_cmd.c
+++ b/src/core/core_cmd.c
@@ -609,13 +609,13 @@ static void core_shmmem(rpc_t* rpc, void* c)
        }
        shm_info(&mi);
        rpc->add(c, "{", &handle);
-       rpc->struct_add(handle, "dddddd",
-               "total", (unsigned int)(mi.total_size>>rs),
-               "free", (unsigned int)(mi.free_size>>rs),
-               "used", (unsigned int)(mi.used_size>>rs),
-               "real_used",(unsigned int)(mi.real_used>>rs),
-               "max_used", (unsigned int)(mi.max_used>>rs),
-               "fragments", (unsigned int)mi.total_frags
+       rpc->struct_add(handle, "jjjjjj",
+               "total", (mi.total_size>>rs),
+               "free", (mi.free_size>>rs),
+               "used", (mi.used_size>>rs),
+               "real_used", (mi.real_used>>rs),
+               "max_used", (mi.max_used>>rs),
+               "fragments", mi.total_frags
        );
 }
 

_______________________________________________
Kamailio (SER) - Development Mailing List
To unsubscribe send an email to sr-dev-le...@lists.kamailio.org

Reply via email to