summaryrefslogtreecommitdiff
path: root/gjs/stack.cpp
diff options
context:
space:
mode:
authorPhilip Chimento <philip.chimento@gmail.com>2022-11-19 17:41:37 -0800
committerPhilip Chimento <philip.chimento@gmail.com>2023-03-04 23:40:32 -0800
commit296934af365ea347aa94bdc88cf9e12b5e5031e8 (patch)
treedcbe118867bda47b43ba7f73ec9d98fde2053b87 /gjs/stack.cpp
parent12de7257e2923c5285614d51f06d751ebc0c60a8 (diff)
downloadgjs-296934af365ea347aa94bdc88cf9e12b5e5031e8.tar.gz
cleanup: Replace static_cast<GjsContext*> with runtime cast
The runtime cast is defined anyway by the GObject macros, and allows turning runtime checking on or off at build time as desired.
Diffstat (limited to 'gjs/stack.cpp')
-rw-r--r--gjs/stack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gjs/stack.cpp b/gjs/stack.cpp
index b3d0d9c3..3292eae4 100644
--- a/gjs/stack.cpp
+++ b/gjs/stack.cpp
@@ -31,7 +31,7 @@ gjs_dumpstack(void)
GList *iter;
for (iter = contexts; iter; iter = iter->next) {
- GjsAutoUnref<GjsContext> context(static_cast<GjsContext*>(iter->data));
+ GjsAutoUnref<GjsContext> context(GJS_CONTEXT(iter->data));
gjs_context_print_stack_stderr(context);
}
}