type fixes

This commit is contained in:
Ron Pedde 2006-03-07 06:07:34 +00:00
parent 8e9d759e05
commit 942125f271

View File

@ -137,7 +137,7 @@ void txt_add(char *txtrecord, char *fmt, ...) {
vsnprintf(buff, sizeof(buff), fmt, ap); vsnprintf(buff, sizeof(buff), fmt, ap);
va_end(ap); va_end(ap);
len = strlen(buff); len = (int)strlen(buff);
end = txtrecord + strlen(txtrecord); end = txtrecord + strlen(txtrecord);
*end = len; *end = len;
strcpy(end+1,buff); strcpy(end+1,buff);