# HG changeset patch # User reimar # Date 1282383675 0 # Node ID 0a5093edd40687081672b1191c8d1ea5099216f0 # Parent 5f57e2bd697f2ba0c3763150d6dce71952c8cf7b Switch to uppercase hex. diff -r 5f57e2bd697f -r 0a5093edd406 stream/stream_bd.c --- a/stream/stream_bd.c Sat Aug 21 09:40:16 2010 +0000 +++ b/stream/stream_bd.c Sat Aug 21 09:41:15 2010 +0000 @@ -137,7 +137,7 @@ int i; idlen = FFMIN(idlen, 20); for (i = 0; i < idlen; i++) - snprintf(dst + 2*i, 3, "%02"PRIx8, id[i]); + snprintf(dst + 2*i, 3, "%02"PRIX8, id[i]); } static int find_vuk(struct bd_priv *bd, const uint8_t discid[20])