From 54c159cb41d3d885807ce117b41cfbb444e45e5a Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Tue, 21 Apr 2009 16:57:52 +0000 Subject: Turn on -Wshorten-64-to-32 by default, and fix some issues that turned up (99 44/100% of which were assignments of double-precision floating-point constants to floats). Hopefully this will catch at least some P64 issues on UN*X. svn path=/trunk/; revision=28108 --- fileset.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fileset.h') diff --git a/fileset.h b/fileset.h index b0ba5229e6..7c8b14b87f 100644 --- a/fileset.h +++ b/fileset.h @@ -35,7 +35,7 @@ typedef struct _fileset_entry { const char *name; /* File name without path (g_strdup'ed) */ time_t ctime; /* create time */ time_t mtime; /* last modified time */ - long size; /* size of file in bytes */ + gint64 size; /* size of file in bytes */ gboolean current; /* is this the currently loaded file? */ } fileset_entry; -- cgit v1.2.1