don't make strings const when they are not

gets rid of compiler warnings
This commit is contained in:
Benjamin Otte 2009-06-12 15:57:12 +02:00 committed by Matthias Clasen
parent 6d8d934823
commit 3eb4323149

View File

@ -843,8 +843,8 @@ uri_list_segment_to_files (GList *start,
typedef struct typedef struct
{ {
const char *display; char *display;
const char *sn_id; char *sn_id;
} ChildSetupData; } ChildSetupData;
static void static void