This commit is contained in:
Gabor Adam Toth 2011-04-25 22:47:24 +02:00
parent 4090adc5f3
commit 156b57c2e9
2 changed files with 3 additions and 3 deletions

View File

@ -85,9 +85,9 @@ inline PSYC_Packet PSYC_newPacket(PSYC_ModifierArray *routing,
p.contentLength += data->length + 1; // data\n
// set total length: routing-header \n content |\n
p.length = p.routingLength + 1 + p.contentLength + sizeof(PSYC_PACKET_DELIMITER) - 2;
p.length = p.routingLength + 1 + p.contentLength + sizeof(PSYC_PACKET_DELIMITER) - 2;
if (flag == PSYC_PACKET_NEED_LENGTH) // add length of length if needed
p.length += log10((double)data->length) + 1;
p.length += log10((double)data->length) + 1;
return p;
}

View File

@ -1,7 +1,7 @@
#include "psyc/lib.h"
#include "psyc/render.h"
inline int PSYC_renderModifier(PSYC_Modifier *m, char *buffer)
inline size_t PSYC_renderModifier(PSYC_Modifier *m, char *buffer)
{
size_t cur = 0;