WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] missing braces for the for body (this is not python)

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] missing braces for the for body (this is not python)
From: BitKeeper Bot <riel@xxxxxxxxxxx>
Date: Thu, 02 Jun 2005 13:17:54 +0000
Delivery-date: Thu, 02 Jun 2005 14:02:03 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: Xen Development List <xen-devel@xxxxxxxxxxxxxxxxxxx>
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
ChangeSet 1.1638, 2005/06/02 14:17:54+01:00, vh249@xxxxxxxxxxxxxxxxxxxxxx

        missing braces for the for body (this is not python)
        
        Signed-off-by: Vincent Hanquez <vincent@xxxxxxxxxxxxx>



 gnttab.c |    2 ++
 1 files changed, 2 insertions(+)


diff -Nru a/linux-2.6.11-xen-sparse/arch/xen/kernel/gnttab.c 
b/linux-2.6.11-xen-sparse/arch/xen/kernel/gnttab.c
--- a/linux-2.6.11-xen-sparse/arch/xen/kernel/gnttab.c  2005-06-02 10:02:56 
-04:00
+++ b/linux-2.6.11-xen-sparse/arch/xen/kernel/gnttab.c  2005-06-02 10:02:56 
-04:00
@@ -189,9 +189,11 @@
     int i;
 
     for ( i = 0; i < count; i++ )
+    {
         to_die = next;
         next = gnttab_free_list[next];
         put_free_entry( to_die );
+    }
 }
 
 int

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] missing braces for the for body (this is not python), BitKeeper Bot <=