13 lines
645 B
Text
13 lines
645 B
Text
$NetBSD: patch-ac,v 1.1 2002/01/21 11:34:57 wiz Exp $
|
|
|
|
--- support_functions.h.orig Sat Jul 29 08:41:38 2000
|
|
+++ support_functions.h
|
|
@@ -680,7 +680,7 @@
|
|
printf("%-20s%d\n", "BitRate", mp3_i->BIT_RATE);
|
|
printf("%-20s%d\n", "SampRate", mp3_i->SAMPLE_FREQ);
|
|
printf("%-20s%s\n", "BinString", mp3_i->BIN_STRING);
|
|
- printf("%-20s%d\n", "BinLen", strlen(mp3_i->BIN_STRING));
|
|
+ printf("%-20s%llu\n", "BinLen", (unsigned long long)strlen(mp3_i->BIN_STRING));
|
|
printf("%-20s%u\n", "IntHeader", mp3_i->INT_HEADER);
|
|
printf("%-20s0x%x\n", "CRC16Value", mp3_i->CRC16_VALUE);
|
|
printf("%-20s0x%x\n", "Correct_CRC16Value", mp3_i->CORRECT_CRC16_VALUE);
|