From 772c8fda0fbbf99451d471f99b7db6715ad88490 Mon Sep 17 00:00:00 2001
From: Rudolf Polzer <divverent@xonotic.org>
Date: Sun, 5 Jun 2011 19:19:45 +0200
Subject: [PATCH] fix a scanf warning

---
 tools/quake3/q3map2/light_ydnar.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/quake3/q3map2/light_ydnar.c b/tools/quake3/q3map2/light_ydnar.c
index f60e6645..80913321 100644
--- a/tools/quake3/q3map2/light_ydnar.c
+++ b/tools/quake3/q3map2/light_ydnar.c
@@ -4052,7 +4052,7 @@ void SetupFloodLight( void )
 		v5=floodlightIntensity;
 		v6=floodlightDirectionScale;
 
-		sscanf( value, "%lf %lf %lf %lf %lf %lf", &v1, &v2, &v3, &v4, &v5);
+		sscanf( value, "%lf %lf %lf %lf %lf %lf", &v1, &v2, &v3, &v4, &v5, &v6);
 
 		floodlightRGB[0]=v1;
 		floodlightRGB[1]=v2;
-- 
2.39.5