From 09db6d84a7f866f75948a6350663fcce8f1e0ad1 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Fri, 2 Dec 2005 05:31:11 +0000 Subject: [PATCH] minor comments --- include/FLAC/callback.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/FLAC/callback.h b/include/FLAC/callback.h index c6f94c0c..488ed90b 100644 --- a/include/FLAC/callback.h +++ b/include/FLAC/callback.h @@ -68,7 +68,7 @@ * stdio streams to implement the callbacks, you can pass fread, fwrite, and * fclose anywhere a FLAC__IOCallback_Read, FLAC__IOCallback_Write, or * FLAC__IOCallback_Close is required, and a FILE* anywhere a FLAC__IOHandle - * is required. \warning You generally can NOT directly use fseek or ftell + * is required. \warning You generally CANNOT directly use fseek or ftell * for FLAC__IOCallback_Seek or FLAC__IOCallback_Tell since on most systems * these use 32-bit offsets and FLAC requires 64-bit offsets to deal with * large files. You will have to find an equivalent function (e.g. ftello),