From 237e7c98dd125bb0677e34664f208b7687337739 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Thu, 25 Oct 2012 19:50:43 -0700 Subject: [PATCH] Fix mimetype types. --- libguac/include/client.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libguac/include/client.h b/libguac/include/client.h index c32f70e2..0e2e78ea 100644 --- a/libguac/include/client.h +++ b/libguac/include/client.h @@ -196,13 +196,13 @@ typedef struct guac_client_info { * NULL-terminated array of client-supported audio mimetypes. If the client * does not support audio at all, this will be NULL. */ - char* audio_mimetypes; + const char** audio_mimetypes; /** * NULL-terminated array of client-supported video mimetypes. If the client * does not support video at all, this will be NULL. */ - char* video_mimetypes; + const char** video_mimetypes; } guac_client_info;