]> git.sesse.net Git - vlc/blobdiff - include/vlc_httpd.h
All signedness fixes
[vlc] / include / vlc_httpd.h
index b6b4edbd401c3a9cc9e97360e4c69fcc94bfd2b9..d716fbe40d7a99f2744f31265524cfcebdcc9d37 100644 (file)
@@ -82,7 +82,9 @@ struct httpd_message_t
 
     /* for a query */
     char    *psz_url;
-    char    *psz_args;  /* FIXME find a clean way to handle GET(psz_args) and POST(body) through the same code */
+    /* FIXME find a clean way to handle GET(psz_args)
+       and POST(body) through the same code */
+    uint8_t *psz_args;
 
     /* for rtp over rtsp */
     int     i_channel;