Browse Source

Fix documentation: actually, always evaluates to 0.

Rusty Russell 16 years ago
parent
commit
f66bb62ab9
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ccan/check_type/check_type.h

+ 1 - 1
ccan/check_type/check_type.h

@@ -31,7 +31,7 @@
  * arguments are of identical types.  No type promotion of the expressions is
  * done: an unsigned int is not the same as an int!
  *
- * check_types_match() always evaluates to 1.
+ * check_types_match() always evaluates to 0.
  *
  * If your compiler does not support typeof, then the best we can do is fail
  * to compile if the sizes of the types are unequal (a less complete check).