Fix spacing around commas

On some places in the libvirt code we have:

  f(a,z)

instead of

  f(a, z)

This trivial patch fixes couple of such occurrences.

Signed-off-by: Michal Privoznik <mprivozn@redhat.com>
This commit is contained in:
Michal Privoznik
2014-08-22 14:59:28 +02:00
parent 24b1bad37f
commit 66eaa887e9
11 changed files with 23 additions and 23 deletions

View File

@@ -614,7 +614,7 @@
</p>
<pre>
#if defined(HAVE_POSIX_FALLOCATE) &amp;&amp; !defined(HAVE_FALLOCATE)
# define fallocate(a,ignored,b,c) posix_fallocate(a,b,c)
# define fallocate(a, ignored, b, c) posix_fallocate(a, b, c)
#endif
</pre>