diff --git a/modules/access_output/http.c b/modules/access_output/http.c
index 02828948af51ba4e33cabd92386f91243fb7a3f1..2b5769e299b53a9cdd2e7f5e9f2f11d792db744f 100644
--- a/modules/access_output/http.c
+++ b/modules/access_output/http.c
@@ -277,8 +277,11 @@ static int Open( vlc_object_t *p_this )
 
     if( p_sys->b_metacube )
     {
-        httpd_header headers[] = {{ "Content-encoding", "metacube" }};
-        int err = httpd_StreamSetHTTPHeaders( p_sys->p_httpd_stream, headers, sizeof( headers ) / sizeof( httpd_header ) );
+        const httpd_header headers[] = {
+            { (char *)"Content-encoding", (char *)"metacube" }
+        };
+        int err = httpd_StreamSetHTTPHeaders( p_sys->p_httpd_stream, headers,
+                                              ARRAY_SIZE(headers) );
         if( err != VLC_SUCCESS )
         {
             free( p_sys );