From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45438) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTEgd-0000Ko-BS for qemu-devel@nongnu.org; Sun, 14 Sep 2014 14:38:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XTEgV-0001jJ-SS for qemu-devel@nongnu.org; Sun, 14 Sep 2014 14:38:11 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16644) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XTEgV-0001iy-MH for qemu-devel@nongnu.org; Sun, 14 Sep 2014 14:38:03 -0400 Date: Sun, 14 Sep 2014 21:41:20 +0300 From: "Michael S. Tsirkin" Message-ID: <1410719879-25181-3-git-send-email-mst@redhat.com> References: <1410719879-25181-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1410719879-25181-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 02/12] test-qdev-global-props: Trivial comment fix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Don Slutz , Eduardo Habkost , Anthony Liguori From: Eduardo Habkost Signed-off-by: Eduardo Habkost Acked-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- tests/test-qdev-global-props.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test-qdev-global-props.c b/tests/test-qdev-global-props.c index 2bef04c..e1a1317 100644 --- a/tests/test-qdev-global-props.c +++ b/tests/test-qdev-global-props.c @@ -143,7 +143,7 @@ static const TypeInfo dynamic_prop_type = { .class_init = dynamic_class_init, }; -/* Test setting of static property using global properties */ +/* Test setting of dynamic properties using global properties */ static void test_dynamic_globalprop(void) { MyType *mt; -- MST