translate: Fix typo in is_legal_int_format_combo.

Fixes same on both sides defect reported by Coverity.

Signed-off-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: José Fonseca <jfonseca@vmware.com>
This commit is contained in:
Vinson Lee 2012-08-07 00:13:41 -07:00
parent 1ea263fccb
commit 7528e2104f
1 changed files with 1 additions and 1 deletions

View File

@ -773,7 +773,7 @@ is_legal_int_format_combo( const struct util_format_description *src,
for (i = 0; i < nr; i++) {
/* The signs must match. */
if (src->channel[i].type != src->channel[i].type) {
if (src->channel[i].type != dst->channel[i].type) {
return FALSE;
}