Remove unnecessary spaces inbetween or next to tabs

This commit is contained in:
Landon Curt Noll
2021-12-01 23:25:49 -08:00
parent bb041098bc
commit ef00e00328
19 changed files with 78 additions and 78 deletions

View File

@@ -96,16 +96,16 @@ S_FUNC QCKHASH blk_hash(BLOCK *blk, QCKHASH val);
* the next 32 bit QCKHASH
*
* Example:
* QCKHASH val;
* int x;
* QCKHASH val;
* int x;
*
* quasi_fnv(x, val);
* quasi_fnv(x, val);
*
* NOTE: The (x) argument may be an expression such as something with
* a ++ or --. The macro must only use (x) once.
* a ++ or --. The macro must only use (x) once.
*
* NOTE: The (val) argument just be a lvalue / something to which
* a value can be assigned.
* a value can be assigned.
*
* The careful observer will note that (x) need not be a simple
* octet. This is not a bug, but a feature. The FNV hash was
@@ -366,7 +366,7 @@ randhash(RAND *r, QCKHASH val)
return V_RAND+val;
} else {
/* hash control values */
val += V_RAND;
val += V_RAND;
quasi_fnv(r->j, val);
quasi_fnv(r->k, val);
quasi_fnv(r->bits, val);