From: Laine Stump Date: Sat, 23 Feb 2013 15:30:38 +0000 (-0500) Subject: util: fix typo in comment X-Git-Tag: v1.0.3-rc1~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c720ddd6ac27075186044a93ef2d9e08efe6f831;p=thirdparty%2Flibvirt.git util: fix typo in comment --- diff --git a/src/util/viralloc.h b/src/util/viralloc.h index e1f5758f04..3c97a58804 100644 --- a/src/util/viralloc.h +++ b/src/util/viralloc.h @@ -197,7 +197,7 @@ void virFree(void *ptrptr) ATTRIBUTE_NONNULL(1); * char[1]), or generates a compile error if it wasn't successful * (char[2*0 -1] i.e. char[-1], which isn't valid in C). * - * So VIR_TYPECHECK(a, b) will either abort the compile with an error, + * So VIR_TYPEMATCH(a, b) will either abort the compile with an error, * or evaluate to "1", and in the meantime check that we've actually * added the correct &'s and/or *'s to the arguments. (Whew!) */