Newline in dbg output removed.

FossilOrigin-Name: 170f810ac4f2fb8203484bc2fe5bb3d946bce03bb2755efc8919361c8ae4e217
This commit is contained in:
7u83@mail.ru 2014-08-17 16:45:18 +00:00
parent f5d2d809a7
commit e67d105058
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ int hdr_print(char *str, uint8_t *packet, int len)
int seqnum = (ntohl(*((uint32_t*)(packet+bhlen+4))))>>24;
int msgelemlen = 0xFF & ((ntohl(*((uint32_t*)(packet+bhlen+4))))>>8);
s+=sprintf(s,", SeqNum: %d, MsgelemLen:%d\n",seqnum,msgelemlen);
s+=sprintf(s,", SeqNum: %d, MsgelemLen:%d",seqnum,msgelemlen);
return s-str;