From 1d437002bea0b89226ff478df4415f7eb9495352 Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Thu, 16 May 2002 06:38:32 +0000 Subject: [PATCH] minor comments --- include/FLAC/assert.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/FLAC/assert.h b/include/FLAC/assert.h index 422b85b2..e716e092 100644 --- a/include/FLAC/assert.h +++ b/include/FLAC/assert.h @@ -20,7 +20,7 @@ #ifndef FLAC__ASSERT_H #define FLAC__ASSERT_H -/* we need this since some compilers (like MSVC) leave asserts on release code (and we don't want to use their ASSERT) */ +/* we need this since some compilers (like MSVC) leave assert()s on release code (and we don't want to use their ASSERT) */ #ifdef DEBUG #include #define FLAC__ASSERT(x) assert(x)