From: Chris Lalancette Date: Wed, 5 Aug 2009 11:46:43 +0000 (+0200) Subject: Fix up a stray whitespace in virHashGrow. X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=7b0075a24226aa794b51ec58f273b2bbf591e94d;p=libvirt.git Fix up a stray whitespace in virHashGrow. Signed-off-by: Chris Lalancette --- diff --git a/src/hash.c b/src/hash.c index bde3a0b901..9308c0c2ba 100644 --- a/src/hash.c +++ b/src/hash.c @@ -141,7 +141,7 @@ virHashGrow(virHashTablePtr table, int size) } table->size = size; - /* If the two loops are merged, there would be situations where + /* If the two loops are merged, there would be situations where * a new entry needs to allocated and data copied into it from * the main table. So instead, we run through the array twice, first * copying all the elements in the main array (where we can't get