From: Brian Behlendorf Date: Fri, 23 Jan 2009 16:59:11 +0000 (-0800) Subject: Remove stray ` from macro X-Git-Tag: debian/0.7.9-2~609 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=e4f3ea278e05b5b23e857cf6cf061caddf5ce148;p=mirror_spl-debian.git Remove stray ` from macro --- diff --git a/include/sys/debug.h b/include/sys/debug.h index b0f2bc7..7ceb571 100644 --- a/include/sys/debug.h +++ b/include/sys/debug.h @@ -340,7 +340,7 @@ do { \ } while (0) #define VERIFY3S(x,y,z) VERIFY3_IMPL(x, y, z, int64_t, "%lld", (long long)) -#define VERIFY3U(x,y,z) VERIFY3_IMPL(x, y, z, uint64_t, "%llu`", \ +#define VERIFY3U(x,y,z) VERIFY3_IMPL(x, y, z, uint64_t, "%llu", \ (unsigned long long)) #define VERIFY3P(x,y,z) VERIFY3_IMPL(x, y, z, uintptr_t, "%p", (void *))