]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Fix capitalization "CLang" -> "Clang"
authorAndrea Bolognani <abologna@redhat.com>
Thu, 12 Nov 2020 13:57:55 +0000 (14:57 +0100)
committerAndrea Bolognani <abologna@redhat.com>
Thu, 12 Nov 2020 14:01:42 +0000 (15:01 +0100)
Signed-off-by: Andrea Bolognani <abologna@redhat.com>
config.h
docs/programming-languages.rst
meson.build
tests/qemusecuritymock.c

index 0f12b728b68d213af5ec363fed685eeb2c2cc89b..2ee7f7bff6dccce8c9cf5bfb33408c46e60fc164 100644 (file)
--- a/config.h
+++ b/config.h
@@ -26,7 +26,7 @@
 #endif
 
 #ifndef __GNUC__
-# error "Libvirt requires GCC >= 4.8, or CLang"
+# error "Libvirt requires GCC >= 4.8, or Clang"
 #endif
 
 /*
index 9d7dbdcd37b50750e6c429d5a822f88171704001..80a997f63bae586d898f488df1c9369d40bfe6e0 100644 (file)
@@ -11,7 +11,7 @@ some of the existing languages.
 The preferred languages at this time are:
 
 -  C - for the main libvirt codebase. Dialect supported by
-   GCC/CLang only.
+   GCC/Clang only.
 -  Python - for supporting build scripts / tools. Code must run
    with both version 2.7 and 3.x at this time.
 
index 5fec644fc7eeb83fe24dacccfd27a63f77a92d74..8133d094c8d901449a30e2eb7e5a39d0975f6ef9 100644 (file)
@@ -401,8 +401,8 @@ cc_flags += [
   # We do "bad" function casts all the time for event callbacks
   '-Wno-cast-function-type',
 
-  # CLang incorrectly complains about dup typedefs win gnu99 mode
-  # so use this CLang-specific arg to keep it quiet
+  # Clang incorrectly complains about dup typedefs win gnu99 mode
+  # so use this Clang-specific arg to keep it quiet
   '-Wno-typedef-redefinition',
 
   # Clang complains about casts in G_DEFINE_TYPE(...)
index d6858dc821304366aefaabe769ef46cdeff9ab2e..1fa4e522cc5272e021c3d3eff02d72a244618519 100644 (file)
@@ -183,7 +183,7 @@ virFileGetXAttrQuiet(const char *path,
  * return value from virFileGetXAttrQuiet gets scrambled
  * if we mock virFileGetXAttrQuiet, returning -1 instead
  * of 0 despite succeeding. This happens on FreeBSD 11/12
- * hosts with CLang, and is suspected to be some kind of
+ * hosts with Clang, and is suspected to be some kind of
  * compiler optimization. By mocking this function too we
  * can workaround it.
  */