Chromium Code Reviews| Index: nss/lib/freebl/poly1305/poly1305.c |
| =================================================================== |
| --- nss/lib/freebl/poly1305/poly1305.c (revision 231824) |
| +++ nss/lib/freebl/poly1305/poly1305.c (working copy) |
| @@ -23,7 +23,7 @@ |
| memcpy(m, &v, sizeof(v)); |
| } |
| #else |
| -static void U8TO32_LE(const unsigned char *m) { |
| +static uint32_t U8TO32_LE(const unsigned char *m) { |
| return (uint32_t)m[0] | |
| (uint32_t)m[1] << 8 | |
| (uint32_t)m[2] << 16 | |