From 30e5396a79dd9bdc81e2840f5f903d2c25b042fa Mon Sep 17 00:00:00 2001 From: Josh Coalson Date: Mon, 5 Mar 2001 18:36:16 +0000 Subject: [PATCH] fix empty struct problem --- include/FLAC/format.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/FLAC/format.h b/include/FLAC/format.h index 7f6ca99..64a6810 100644 --- a/include/FLAC/format.h +++ b/include/FLAC/format.h @@ -341,6 +341,7 @@ extern const unsigned FLAC__STREAM_METADATA_STREAMINFO_LENGTH; /* = 34 bytes */ * n/8 bytes total */ typedef struct { + int dummy; /* conceptually this is an empty struct since we don't store the padding bytes */ } FLAC__StreamMetaData_Padding; /***************************************************************************** -- 2.7.4