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

@@ -477,7 +477,7 @@ Use parenthesis when checking if a macro is defined, and use indentation to
track nesting:
#if defined(HAVE_POSIX_FALLOCATE) && !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