diff options
author | Brian Paul <[email protected]> | 2012-02-06 17:56:43 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-02-06 17:56:43 -0700 |
commit | 4ab8403c25695535bfabd139cac9bf7012f56eae (patch) | |
tree | b4e7ca8b8fad36fdb4057fc7e77ecb7900b43f04 /src/gallium/auxiliary/util/u_debug.h | |
parent | c0c979eebc076b95cc8d18a013ce2968fe6311ad (diff) |
util: fix typo in debug_printf_once comment
Diffstat (limited to 'src/gallium/auxiliary/util/u_debug.h')
-rw-r--r-- | src/gallium/auxiliary/util/u_debug.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/util/u_debug.h b/src/gallium/auxiliary/util/u_debug.h index ed19cda05a2..06470f66af1 100644 --- a/src/gallium/auxiliary/util/u_debug.h +++ b/src/gallium/auxiliary/util/u_debug.h @@ -101,7 +101,7 @@ debug_printf(const char *format, ...) * ... isn't portable so we need to pass arguments in parentheses. * * usage: - * debug_printf_once(("awnser: %i\n", 42)); + * debug_printf_once(("answer: %i\n", 42)); */ #define debug_printf_once(args) \ do { \ |