diff options
author | Stefan Bellon <[email protected]> | 2002-01-02 17:48:04 +0000 |
---|---|---|
committer | Stefan Bellon <[email protected]> | 2002-01-02 17:48:04 +0000 |
commit | 20d3c745a53c28cc76eec6e511751c0b17440bf3 (patch) | |
tree | b82844fe8aab9bc070fd207d4c8db39b3a09cf20 | |
parent | added RISC OS file name code and casts (diff) | |
download | gnupg-20d3c745a53c28cc76eec6e511751c0b17440bf3.tar.gz gnupg-20d3c745a53c28cc76eec6e511751c0b17440bf3.zip |
changed comment wording
-rw-r--r-- | include/types.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/types.h b/include/types.h index e1413dcd3..b41109ee5 100644 --- a/include/types.h +++ b/include/types.h @@ -46,8 +46,9 @@ #ifndef __riscos__ typedef unsigned char byte; #else - /* Norcroft treats char == unsigned char - but char* != unsigned char* */ + /* Norcroft treats char = unsigned char as legal assignment + but char* = unsigned char* as illegal assignment + and the same applies to the signed variants as well */ typedef char byte; #endif #define HAVE_BYTE_TYPEDEF |