Removed unused variable 'sep_len' in col_do_append_str().

svn path=/trunk/; revision=30199
This commit is contained in:
Stig Bjørlykke 2009-09-29 19:19:40 +00:00
parent 92a02af720
commit 9401317238
1 changed files with 1 additions and 6 deletions

View File

@ -543,18 +543,13 @@ col_do_append_str(column_info *cinfo, gint el, const gchar* separator,
const gchar* str)
{
int i;
size_t len, max_len, sep_len;
size_t len, max_len;
if (el == COL_INFO)
max_len = COL_MAX_INFO_LEN;
else
max_len = COL_MAX_LEN;
if (separator == NULL)
sep_len = 0;
else
sep_len = strlen(separator);
for (i = cinfo->col_first[el]; i <= cinfo->col_last[el]; i++) {
if (cinfo->fmt_matx[i][el]) {
/*