uuencode: style: just use pointer *b

it doesn't make sense to use b[2] here anyway, and it is incorrect (should be b[3]).
This commit is contained in:
Hiltjo Posthuma 2016-03-01 12:43:51 +01:00 committed by sin
parent a51b01ff90
commit fa18379a05
1 changed files with 2 additions and 3 deletions

View File

@ -7,10 +7,9 @@
#include "util.h"
static unsigned int
b64e(unsigned char b[2])
b64e(unsigned char *b)
{
unsigned int o = 0;
unsigned int p = b[2] | (b[1] << 8) | (b[0] << 16);
unsigned int o, p = b[2] | (b[1] << 8) | (b[0] << 16);
const char b64et[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
o = b64et[p & 0x3f]; p >>= 6;