]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
virstring: fix a typo
authorChen Hanxiao <chenhanxiao@gmail.com>
Mon, 11 Jun 2018 10:46:21 +0000 (18:46 +0800)
committerJán Tomko <jtomko@redhat.com>
Mon, 11 Jun 2018 14:00:34 +0000 (16:00 +0200)
s/glibc's_asprintf/glibc's asprintf

Signed-off-by: Chen Hanxiao <chenhanxiao@gmail.com>
Reviewed-by: Ján Tomko <jtomko@redhat.com>
Signed-off-by: Ján Tomko <jtomko@redhat.com>
src/util/virstring.h

index fa2ec1df4defca3a5b79e773792b67a2eac57373..607ae66e991397c93f13e9b1e422ecc5e4564ac8 100644 (file)
@@ -248,7 +248,7 @@ size_t virStringListLength(const char * const *strings);
  * @strp: variable to hold result (char **)
  * @fmt: printf format
  *
- * Like glibc's_asprintf but makes sure *strp == NULL on failure, in which case
+ * Like glibc's asprintf but makes sure *strp == NULL on failure, in which case
  * the OOM error is reported too.
  *
  * Returns -1 on failure (with OOM error reported), number of bytes printed
@@ -264,7 +264,7 @@ size_t virStringListLength(const char * const *strings);
  * @strp: variable to hold result (char **)
  * @fmt: printf format
  *
- * Like glibc's_asprintf but makes sure *strp == NULL on failure.
+ * Like glibc's asprintf but makes sure *strp == NULL on failure.
  *
  * Returns -1 on failure, number of bytes printed on success.
  */