From 07c1593012b0ad28b22f8ab081f972b1c071e8de Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Tue, 30 Jun 2009 14:24:06 -0700 Subject: [PATCH] Fixed asprintf missing argument --- src/tuio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tuio.c b/src/tuio.c index 666faac..7093467 100644 --- a/src/tuio.c +++ b/src/tuio.c @@ -517,7 +517,7 @@ _object_new(ObjectPtr obj, InputInfoPtr pInfo) { * There isn't a great way to do this right now without native * blob events, so just hack it out for now. Woot. */ - asprintf(&name, "Tuio Obj (%s) %i", obj->id); + asprintf(&name, "Tuio Obj (%s) %i", pInfo->name, obj->id); /* Open connection to dbus and create contex */ dbus_error_init(&error); -- 2.11.4.GIT