diff options
author | Brian Behlendorf <[email protected]> | 2009-01-23 08:59:11 -0800 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2009-01-23 08:59:11 -0800 |
commit | e4f3ea278e05b5b23e857cf6cf061caddf5ce148 (patch) | |
tree | 658e387f1117cae93ca3e844bd3a87e06a4d0e04 /include | |
parent | 3f4126739dc5c2a0b10ec1f6143ec43028755aa4 (diff) |
Remove stray ` from macro
Diffstat (limited to 'include')
-rw-r--r-- | include/sys/debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/debug.h b/include/sys/debug.h index b0f2bc727..7ceb571d0 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 *)) |