From 0df1578e9158d0afbb231c4de64db28cfc78187d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Rafa=C3=ABl=20Carr=C3=A9?= <funman@videolan.org>
Date: Fri, 25 Jan 2008 15:15:56 +0000
Subject: [PATCH] access_file: fix a vlc warning

---
 modules/access/file.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/modules/access/file.c b/modules/access/file.c
index 48153f96b69f..3991fb062e69 100644
--- a/modules/access/file.c
+++ b/modules/access/file.c
@@ -513,11 +513,12 @@ static int Control( access_t *p_access, int i_query, va_list args )
         case ACCESS_SET_SEEKPOINT:
         case ACCESS_SET_PRIVATE_ID_STATE:
         case ACCESS_GET_META:
+        case ACCESS_GET_PRIVATE_ID_STATE:
         case ACCESS_GET_CONTENT_TYPE:
             return VLC_EGENERIC;
 
         default:
-            msg_Warn( p_access, "unimplemented query in control" );
+            msg_Warn( p_access, "unimplemented query %d in control", i_query );
             return VLC_EGENERIC;
 
     }
-- 
GitLab