Re: [libvirt] [PATCH 16/32] Convert 'int i' to 'size_t i' in src/qemu files

2013-07-10 Thread Guannan Ren
On 07/08/2013 10:21 PM, Daniel P. Berrange wrote: From: Daniel P. Berrange berra...@redhat.com Convert the type of loop iterators named 'i', 'j', k', 'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or 'unsigned int', also santizing 'ii', 'jj', 'kk' to use the normal 'i', 'j', 'k' naming

Re: [libvirt] [PATCH 16/32] Convert 'int i' to 'size_t i' in src/qemu files

2013-07-10 Thread Ján Tomko
On 07/08/2013 04:21 PM, Daniel P. Berrange wrote: From: Daniel P. Berrange berra...@redhat.com Convert the type of loop iterators named 'i', 'j', k', 'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or 'unsigned int', also santizing 'ii', 'jj', 'kk' to use the normal 'i', 'j', 'k' naming

Re: [libvirt] [PATCH 16/32] Convert 'int i' to 'size_t i' in src/qemu files

2013-07-10 Thread Daniel P. Berrange
On Wed, Jul 10, 2013 at 10:15:27AM +0200, Ján Tomko wrote: On 07/08/2013 04:21 PM, Daniel P. Berrange wrote: From: Daniel P. Berrange berra...@redhat.com Convert the type of loop iterators named 'i', 'j', k', 'ii', 'jj', 'kk', to be 'size_t' instead of 'int' or 'unsigned int', also