From d696272192e69a7c7c48fd8686886d3c00b1d40c Mon Sep 17 00:00:00 2001 From: hiro Date: Fri, 18 Apr 2014 09:29:38 +0000 Subject: made workaround for 64-bit time_t on win32. git-svn-id: svn://sylpheed.sraoss.jp/sylpheed/trunk@3391 ee746299-78ed-0310-b773-934348b2243d --- plugin/attachment_tool/attachment_tool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugin/attachment_tool') diff --git a/plugin/attachment_tool/attachment_tool.c b/plugin/attachment_tool/attachment_tool.c index b7a324e4..de299a21 100644 --- a/plugin/attachment_tool/attachment_tool.c +++ b/plugin/attachment_tool/attachment_tool.c @@ -228,7 +228,7 @@ static gboolean remove_attachment(MsgInfo *msginfo) if (!err) { debug_print("overwriting original message file: %s\n", infile); if (copy_file(outfile, infile, FALSE) == 0) { - struct stat s; + GStatBuf s; if (g_stat(infile, &s) == 0) { msginfo->size = s.st_size; msginfo->mtime = s.st_mtime; -- cgit v1.2.3