Browse Source

fix typo: s/Endianess/Endianness/

Michael Stapelberg 11 years ago
parent
commit
8d7e3d8216
2 changed files with 2 additions and 2 deletions
  1. 1 1
      crypt.tex
  2. 1 1
      src/misc/crypt/crypt.c

+ 1 - 1
crypt.tex

@@ -5580,7 +5580,7 @@ stderr then return execution to the caller.  This could lead to a segmentation f
 if you handle signals on your own.  When set to 3, it will resolve to a empty macro and no error checking will be performed.  Finally, when set
 to 4, it will return CRYPT\_INVALID\_ARG to the caller.  
 
-\subsubsection{Endianess}
+\subsubsection{Endianness}
 There are five macros related to endianess issues.  For little endian platforms define, \textbf{ENDIAN\_LITTLE}.  For big endian
 platforms define \textbf{ENDIAN\_BIG}.  Similarly when the default word size of an \textit{unsigned long} is 32-bits define \textbf{ENDIAN\_32BITWORD}
 or define \textbf{ENDIAN\_64BITWORD} when its 64-bits.  If you do not define any of them the library will automatically use \textbf{ENDIAN\_NEUTRAL}

+ 1 - 1
src/misc/crypt/crypt.c

@@ -19,7 +19,7 @@ const char *crypt_build_settings =
    "LibTomCrypt " SCRYPT " (Tom St Denis, [email protected])\n"
    "LibTomCrypt is public domain software.\n"
    "Built on " __DATE__ " at " __TIME__ "\n\n\n"
-   "Endianess: "
+   "Endianness: "
 #if defined(ENDIAN_NEUTRAL)
    "neutral\n"
 #elif defined(ENDIAN_LITTLE)