changeset 983:5049449ad841

Remove unneeded type casting.
author zas_
date Sat, 23 Aug 2008 17:00:59 +0000
parents 021c4eda0736
children bc73dc055cd0
files src/ui_fileops.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/ui_fileops.c	Sat Aug 23 08:42:12 2008 +0000
+++ b/src/ui_fileops.c	Sat Aug 23 17:00:59 2008 +0000
@@ -243,7 +243,7 @@
 	struct stat st;
 
 	if (!stat_utf8(s, &st)) return 0;
-	return (gint)st.st_size;
+	return st.st_size;
 }
 
 time_t filetime(const gchar *s)