From b084bc28ede5d397e88a4e2bdad8c07a55069589 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 8 Oct 2008 11:03:39 +0200 Subject: use the "bool" data type instead of "int" "bool" should be used in C99 programs for boolean values. --- src/decoder_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/decoder_internal.h') diff --git a/src/decoder_internal.h b/src/decoder_internal.h index 6d8bc7a87..174ca019d 100644 --- a/src/decoder_internal.h +++ b/src/decoder_internal.h @@ -27,7 +27,7 @@ struct decoder { ConvState conv_state; - int seeking; + bool seeking; }; #endif -- cgit v1.2.3