remove hard tabs and other minor fixes

This commit is contained in:
Takashi Kojo
2021-07-30 07:07:40 +09:00
parent 297ae23521
commit bad9a973b4

View File

@ -36566,13 +36566,13 @@ static void init_offset()
} }
static void get_record(unsigned char *data, unsigned char *buf, int len) static void get_record(unsigned char *data, unsigned char *buf, int len)
{ {
memcpy(buf, data+r_offset, len); XMEMCPY(buf, data+r_offset, len);
r_offset += len; r_offset += len;
} }
static void set_record(unsigned char *data, unsigned char *buf, int len) static void set_record(unsigned char *data, unsigned char *buf, int len)
{ {
memcpy(data+w_offset, buf, len); XMEMCPY(data+w_offset, buf, len);
w_offset += len; w_offset += len;
} }
@ -36587,7 +36587,6 @@ static void set_plain(unsigned char *plain, int rec)
for(j=0; j<BLOCKSZ; j++) for(j=0; j<BLOCKSZ; j++)
*p++ = (i % 16); *p++ = (i % 16);
} }
//binary_dump(plain, rec);
} }
#endif #endif