diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2009-01-29 10:09:11 +0000 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2009-01-29 10:10:38 +0000 |
commit | ff5d37a8ad063e84e88f453a403715bc85f8a3ec (patch) | |
tree | 4c9525f3d45bbcdb2f748b67f3426e17685ae56d /src/cairo-mutex-impl-private.h | |
parent | f4ff6128d7fb6e4b5ba361a597fc6c0c88d5ec00 (diff) |
[mutex] Civilise the comment.
Note bene that Behdad does not like people shouting.
Diffstat (limited to 'src/cairo-mutex-impl-private.h')
-rw-r--r-- | src/cairo-mutex-impl-private.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cairo-mutex-impl-private.h b/src/cairo-mutex-impl-private.h index ad65c111..9df14a43 100644 --- a/src/cairo-mutex-impl-private.h +++ b/src/cairo-mutex-impl-private.h @@ -55,7 +55,7 @@ #define CAIRO_MUTEX_IMPL_NOOP do {/*no-op*/} while (0) /* And one that evaluates it's argument once */ #define CAIRO_MUTEX_IMPL_NOOP1(expr) do { (void)(expr); } while (0) -/* NOTE: 'if (expr) {}' is an alternative to '(void)(expr);' that will 'use' the +/* Note: 'if (expr) {}' is an alternative to '(void)(expr);' that will 'use' the * result of __attribute__((warn_used_result)) functions. */ /* Cairo mutex implementation: |