[Galago-commits] r2338 - in trunk/libgalago: . libgalago

galago-commits at freedesktop.org galago-commits at freedesktop.org
Sun Nov 20 03:21:01 PST 2005


Author: chipx86
Date: 2005-11-20 03:20:59 -0800 (Sun, 20 Nov 2005)
New Revision: 2338

Modified:
   trunk/libgalago/ChangeLog
   trunk/libgalago/libgalago/galago-status.c
Log:
When building a string, it's best to concatenate the result of a function, rather than the function itself, to the string. Unit tests all pass now.


Modified: trunk/libgalago/ChangeLog
===================================================================
--- trunk/libgalago/ChangeLog	2005-11-20 11:19:10 UTC (rev 2337)
+++ trunk/libgalago/ChangeLog	2005-11-20 11:20:59 UTC (rev 2338)
@@ -1,3 +1,10 @@
+Sun Nov 20 03:20:08 PST 2005  Christian Hammond <chipx86 at chipx86.com>
+
+	* libgalago/galago-status.c:
+	  - When building a string, it's best to concatenate the result of a
+	    function, rather than the function itself, to the string. Unit
+	    tests all pass now.
+
 Sun Nov 20 03:17:35 PST 2005  Christian Hammond <chipx86 at chipx86.com>
 
 	* libgalago/galago-dbus.c:

Modified: trunk/libgalago/libgalago/galago-status.c
===================================================================
--- trunk/libgalago/libgalago/galago-status.c	2005-11-20 11:19:10 UTC (rev 2337)
+++ trunk/libgalago/libgalago/galago-status.c	2005-11-20 11:20:59 UTC (rev 2338)
@@ -331,7 +331,7 @@
 		DBUS_TYPE_STRING_AS_STRING,            // name
 		DBUS_TYPE_BOOLEAN_AS_STRING,           // exclusive
 		DBUS_TYPE_ARRAY_AS_STRING,             // array of attributes
-		galago_status_attr_dbus_get_signature,
+		galago_status_attr_dbus_get_signature(),
 		NULL);
 }
 



More information about the galago-commits mailing list