Skip to content

Commit 4c19260

Browse files
committed
format code
1 parent 050de0f commit 4c19260

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

protocol/uni_communication.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ static void _u16_2_byte2_big_endian(unsigned short value, unsigned char *buf) {
111111
buf[1] = (unsigned char)(value & 0xFF);
112112
}
113113

114-
/* src and dst never overlap. donot like memmove */
115114
#define OPSIZ (sizeof(unsigned long int))
116115
#define OP_T_THRES (OPSIZ * 2)
117116
#define BYTE_COPY_FWD(dst_bp, src_bp, nbytes) \
@@ -138,6 +137,7 @@ do { \
138137
} \
139138
} while (0)
140139

140+
/* src and dst never overlap. donot like memmove */
141141
static void* _memcpy(void *dst, const void *src, unsigned int len) {
142142
unsigned long int dstp = (unsigned long int)dst;
143143
unsigned long int srcp = (unsigned long int)src;

0 commit comments

Comments
 (0)