From 8ca76328450ab7942a70a29e02efe18f7dfff01c Mon Sep 17 00:00:00 2001 From: James Turner Date: Sat, 9 Feb 2013 15:33:13 +0000 Subject: [PATCH] Fix a GCC warning. --- src/Aircraft/FlightHistory.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Aircraft/FlightHistory.hxx b/src/Aircraft/FlightHistory.hxx index 38e3d44f2..c5d3aa33b 100644 --- a/src/Aircraft/FlightHistory.hxx +++ b/src/Aircraft/FlightHistory.hxx @@ -69,7 +69,7 @@ private: int simTimeMSec; }; - static const int SAMPLE_BUCKET_WIDTH = 1024; + static const unsigned int SAMPLE_BUCKET_WIDTH = 1024; /** * Bucket is a fixed-size container of samples. This is a crude slab -- 2.39.5