Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
don't make strings const when they are not
Browse files Browse the repository at this point in the history
gets rid of compiler warnings
  • Loading branch information
benjamin-otte authored and Matthias Clasen committed Jun 23, 2009
1 parent 6d8d934 commit 3eb4323
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gio/gdesktopappinfo.c
Original file line number Diff line number Diff line change
Expand Up @@ -843,8 +843,8 @@ uri_list_segment_to_files (GList *start,

typedef struct
{
const char *display;
const char *sn_id;
char *display;
char *sn_id;
} ChildSetupData;

static void
Expand Down

0 comments on commit 3eb4323

Please sign in to comment.