aboutsummaryrefslogtreecommitdiffstats
path: root/fileset.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2010-03-02 00:18:48 +0000
committerGuy Harris <guy@alum.mit.edu>2010-03-02 00:18:48 +0000
commitdb82269fde62a3c7cb24549b38f0974988fbdda4 (patch)
treeacd758bf882ff5ca0422e281c102f7721cb7a9e4 /fileset.h
parent9e2dc2cdfcb35b3a1cb79cfc8f6dc6adeea40bf8 (diff)
Squelch some compiler warnings.
svn path=/trunk/; revision=32078
Diffstat (limited to 'fileset.h')
-rw-r--r--fileset.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/fileset.h b/fileset.h
index 7c8b14b87f..c6d0dd9294 100644
--- a/fileset.h
+++ b/fileset.h
@@ -31,12 +31,12 @@ extern "C" {
typedef struct _fileset_entry {
- const char *fullname; /* File name with path (g_strdup'ed) */
- const char *name; /* File name without path (g_strdup'ed) */
- time_t ctime; /* create time */
- time_t mtime; /* last modified time */
- gint64 size; /* size of file in bytes */
- gboolean current; /* is this the currently loaded file? */
+ char *fullname; /* File name with path (g_strdup'ed) */
+ char *name; /* File name without path (g_strdup'ed) */
+ time_t ctime; /* create time */
+ time_t mtime; /* last modified time */
+ gint64 size; /* size of file in bytes */
+ gboolean current; /* is this the currently loaded file? */
} fileset_entry;