summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2023-04-20 17:46:21 +0200
committerThomas White <taw@physics.org>2023-04-22 10:58:45 +0200
commitbac2dbaeb699fc4e5ebf567f9de02ee957640fc3 (patch)
treec0cc6f7d22a9454ac2bc01e0f763bbe114ec3f4c
parent4bdef71e761c3351480f1e51fc277cbf1c93c739 (diff)
Fix incorrect pointer
-rw-r--r--guile-osc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/guile-osc.c b/guile-osc.c
index 50ce99e..af7cd49 100644
--- a/guile-osc.c
+++ b/guile-osc.c
@@ -87,7 +87,7 @@ struct method_callback_guile_data
const char *types;
lo_arg **argv;
int argc;
- lo_message *msg;
+ lo_message msg;
void *vp;
};