Remove useless new line

v1.1
Pierrick Charron 2012-11-20 21:45:38 -05:00
parent d705083ab3
commit 6dff7f7fd1
1 changed files with 1 additions and 1 deletions

View File

@ -297,7 +297,7 @@ int stomp_send(stomp_t *stomp, stomp_frame_t *frame TSRMLS_DC)
smart_str_appendl(&buf, frame->body, frame->body_length > 0 ? frame->body_length : strlen(frame->body));
}
smart_str_appendl(&buf, "\0\n", sizeof("\0\n")-1);
smart_str_appendl(&buf, "\0", sizeof("\0")-1);
if (!stomp_writable(stomp)) {
char error[1024];