fix compiler warning

svn path=/trunk/; revision=19991
This commit is contained in:
Bill Meier 2006-11-26 18:20:51 +00:00
parent bd39b74d5e
commit 0775839c11
1 changed files with 1 additions and 1 deletions

View File

@ -489,7 +489,7 @@ decode_MPLS_stack(tvbuff_t *tvb, gint offset, char *buf, size_t buflen)
}
bufptr+=MIN(buflen-(bufptr-buf),
g_snprintf(bufptr, buflen-(bufptr-buf), "%u%s",
(unsigned)g_snprintf(bufptr, buflen-(bufptr-buf), "%u%s",
(label_entry >> 4),
((label_entry & 0x000001) == 0) ? "," : " (bottom)"));